37 lines
925 B
Nix
37 lines
925 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, pytest, pytestcov, mock, Mako, decorator, stevedore
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dogpile.cache";
|
|
version = "1.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "64fda39d25b46486a4876417ca03a4af06f35bfadba9f59613f9b3d748aa21ef";
|
|
};
|
|
|
|
# Disable concurrency tests that often fail,
|
|
# probably some kind of timing issue.
|
|
postPatch = ''
|
|
rm tests/test_lock.py
|
|
# Failing tests. https://bitbucket.org/zzzeek/dogpile.cache/issues/116
|
|
rm tests/cache/test_memcached_backend.py
|
|
'';
|
|
|
|
dontUseSetuptoolsCheck = true;
|
|
checkPhase = ''
|
|
pytest
|
|
'';
|
|
|
|
checkInputs = [ pytest pytestcov mock Mako ];
|
|
|
|
propagatedBuildInputs = [ decorator stevedore ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A caching front-end based on the Dogpile lock";
|
|
homepage = "https://bitbucket.org/zzzeek/dogpile.cache";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|