python: dogpile.cache: 0.6.8 -> 0.7.1

This commit is contained in:
Frederik Rietdijk 2019-02-14 08:37:15 +01:00
parent 1bef0b8a66
commit 71fde40c29

View file

@ -1,14 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi
, pytest, pytestcov, mock, Mako
, pytest, pytestcov, mock, Mako, decorator
}:
buildPythonPackage rec {
pname = "dogpile.cache";
version = "0.6.8";
version = "0.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "e2fbe5d95e6df3fcfff2b666c69f3c06a4a3f77296142ae2bca523a176f88fa0";
sha256 = "691b7f199561c4bd6e7e96f164a43cc3781b0c87bea29b7d59d859f873fd4a31";
};
# Disable concurrency tests that often fail,
@ -19,12 +19,13 @@ buildPythonPackage rec {
rm tests/cache/test_memcached_backend.py
'';
buildInputs = [ pytest pytestcov mock Mako ];
checkInputs = [ pytest pytestcov mock Mako ];
propagatedBuildInputs = [ decorator ];
meta = with stdenv.lib; {
description = "A caching front-end based on the Dogpile lock";
homepage = https://bitbucket.org/zzzeek/dogpile.cache;
platforms = platforms.unix;
license = licenses.bsd3;
};
}