2017-05-01 22:39:29 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-02-14 07:37:15 +00:00
|
|
|
, pytest, pytestcov, mock, Mako, decorator
|
2017-05-01 22:39:29 +01:00
|
|
|
}:
|
2017-04-09 08:29:15 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dogpile.cache";
|
2019-11-02 21:02:50 +00:00
|
|
|
version = "0.9.0";
|
2017-04-09 08:29:15 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-02 21:02:50 +00:00
|
|
|
sha256 = "0sr1fn6b4k5bh0cscd9yi8csqxvj4ngzildav58x5p694mc86j5k";
|
2017-04-09 08:29:15 +01:00
|
|
|
};
|
|
|
|
|
2017-05-11 18:47:53 +01:00
|
|
|
# Disable concurrency tests that often fail,
|
|
|
|
# probably some kind of timing issue.
|
2017-07-04 08:39:49 +01:00
|
|
|
postPatch = ''
|
2017-05-11 18:47:53 +01:00
|
|
|
rm tests/test_lock.py
|
2017-07-04 08:39:49 +01:00
|
|
|
# Failing tests. https://bitbucket.org/zzzeek/dogpile.cache/issues/116
|
|
|
|
rm tests/cache/test_memcached_backend.py
|
2017-05-11 18:47:53 +01:00
|
|
|
'';
|
|
|
|
|
2019-10-29 09:06:36 +00:00
|
|
|
dontUseSetuptoolsCheck = true;
|
|
|
|
checkPhase = ''
|
|
|
|
pytest
|
|
|
|
'';
|
|
|
|
|
2019-02-14 07:37:15 +00:00
|
|
|
checkInputs = [ pytest pytestcov mock Mako ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ decorator ];
|
2017-04-09 08:29:15 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A caching front-end based on the Dogpile lock";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bitbucket.org/zzzeek/dogpile.cache";
|
2017-04-09 08:29:15 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|