2017-05-01 21:39:29 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-06-21 18:44:04 +00:00
|
|
|
, pytest, pytestcov, mock, Mako
|
2017-05-01 21:39:29 +00:00
|
|
|
}:
|
2017-04-09 07:29:15 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dogpile.cache";
|
2018-07-22 10:08:27 +00:00
|
|
|
version = "0.6.6";
|
2017-04-09 07:29:15 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 10:08:27 +00:00
|
|
|
sha256 = "044d4ea0a0abc72491044f3d3df8e1fc9e8fa7a436c6e9a0da5850d23a0d16c1";
|
2017-04-09 07:29:15 +00:00
|
|
|
};
|
|
|
|
|
2017-05-11 17:47:53 +00:00
|
|
|
# Disable concurrency tests that often fail,
|
|
|
|
# probably some kind of timing issue.
|
2017-07-04 07:39:49 +00:00
|
|
|
postPatch = ''
|
2017-05-11 17:47:53 +00:00
|
|
|
rm tests/test_lock.py
|
2017-07-04 07:39:49 +00:00
|
|
|
# Failing tests. https://bitbucket.org/zzzeek/dogpile.cache/issues/116
|
|
|
|
rm tests/cache/test_memcached_backend.py
|
2017-05-11 17:47:53 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-01 21:39:29 +00:00
|
|
|
buildInputs = [ pytest pytestcov mock Mako ];
|
2017-04-09 07:29:15 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A caching front-end based on the Dogpile lock";
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://bitbucket.org/zzzeek/dogpile.cache;
|
2017-05-01 21:39:29 +00:00
|
|
|
platforms = platforms.unix;
|
2017-04-09 07:29:15 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|