mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
python: dogpile.cache: 0.6.8 -> 0.7.1
This commit is contained in:
parent
1bef0b8a66
commit
71fde40c29
@ -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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user