Merge pull request #26751 from orivej/python-dogpile-cache

python-dogpile-cache: do not depend on dogpile_core
This commit is contained in:
Frederik Rietdijk 2017-06-22 07:24:19 +02:00 committed by GitHub
commit 8f45ee77ac

View file

@ -1,5 +1,5 @@
{ stdenv, buildPythonPackage, fetchPypi
, dogpile_core, pytest, pytestcov, mock, Mako
, pytest, pytestcov, mock, Mako
}:
buildPythonPackage rec {
@ -18,7 +18,6 @@ buildPythonPackage rec {
rm tests/test_lock.py
'';
propagatedBuildInputs = [ dogpile_core ];
buildInputs = [ pytest pytestcov mock Mako ];
meta = with stdenv.lib; {