1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00

python3Packages.flask-caching: add missing pytestcache dependency

This commit is contained in:
Jonathan Ringer 2019-12-20 21:35:13 -08:00 committed by Frederik Rietdijk
parent aaee618c2b
commit 1283912c41

View file

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchPypi, flask, pytest, pytestcov, pytest-xprocess }:
{ lib, buildPythonPackage, fetchPypi, flask, pytest, pytestcov, pytest-xprocess, pytestcache }:
buildPythonPackage rec {
pname = "Flask-Caching";
@ -11,7 +11,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ flask ];
checkInputs = [ pytest pytestcov pytest-xprocess ];
checkInputs = [ pytest pytestcov pytest-xprocess pytestcache ];
# backend_cache relies on pytest-cache, which is a stale package from 2013
checkPhase = ''