python-dogpile-cache: fix darwin build and add missing test dependencies
This commit is contained in:
parent
bf64f96e7f
commit
74686d6c8c
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchPypi,
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
dogpile_core, pytest
|
, dogpile_core, pytest, pytestcov, mock, Mako
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "dogpile.cache";
|
pname = "dogpile.cache";
|
||||||
@ -13,12 +13,12 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ dogpile_core ];
|
propagatedBuildInputs = [ dogpile_core ];
|
||||||
buildInputs = [ pytest ];
|
buildInputs = [ pytest pytestcov mock Mako ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A caching front-end based on the Dogpile lock";
|
description = "A caching front-end based on the Dogpile lock";
|
||||||
homepage = http://bitbucket.org/zzzeek/dogpile.cache;
|
homepage = http://bitbucket.org/zzzeek/dogpile.cache;
|
||||||
platforms = platforms.linux; # Can only test linux
|
platforms = platforms.unix;
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -14115,6 +14115,7 @@ in {
|
|||||||
description = "Super-fast templating language";
|
description = "Super-fast templating language";
|
||||||
homepage = http://www.makotemplates.org;
|
homepage = http://www.makotemplates.org;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ domenkozar ];
|
maintainers = with maintainers; [ domenkozar ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user