1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

python3.pkgs.dogpile_cache: fix build

This commit is contained in:
Frederik Rietdijk 2019-10-29 10:06:36 +01:00
parent 0008400222
commit eabf213cf1

View file

@ -19,6 +19,11 @@ buildPythonPackage rec {
rm tests/cache/test_memcached_backend.py
'';
dontUseSetuptoolsCheck = true;
checkPhase = ''
pytest
'';
checkInputs = [ pytest pytestcov mock Mako ];
propagatedBuildInputs = [ decorator ];