python2Packages.dependency-injector: add missing dependencies

This commit is contained in:
freezeboy 2020-09-11 13:53:00 +02:00
parent 56456fef75
commit 2102764e62

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2 }: { stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2, pyyaml, flask }:
let let
testPath = testPath =
@ -17,7 +17,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six ];
checkInputs = [ unittest2 ]; checkInputs = [ unittest2 pyyaml flask ];
checkPhase = '' checkPhase = ''
unit2 discover -s tests/unit -p "${testPath}" unit2 discover -s tests/unit -p "${testPath}"