2017-05-01 22:39:29 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-06-21 19:44:04 +01:00
|
|
|
, pytest, pytestcov, mock, Mako
|
2017-05-01 22:39:29 +01:00
|
|
|
}:
|
2017-04-09 08:29:15 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dogpile.cache";
|
2017-07-03 19:19:57 +01:00
|
|
|
version = "0.6.4";
|
2017-04-09 08:29:15 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2017-07-03 19:19:57 +01:00
|
|
|
sha256 = "a73aa3049cd88d7ec57a1c2e8946abdf4f14188d429c1023943fcc55c4568da1";
|
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
|
|
|
'';
|
|
|
|
|
2017-05-01 22:39:29 +01:00
|
|
|
buildInputs = [ pytest pytestcov mock Mako ];
|
2017-04-09 08:29:15 +01: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 22:39:29 +01:00
|
|
|
platforms = platforms.unix;
|
2017-04-09 08:29:15 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|