Merge pull request #97765 from freezeboy/fix-dependency-injector

python2Packages.dependency-injector: add missing dependencies
gstqt5
Robert Scott 2020-09-13 12:00:40 +01:00 committed by GitHub
commit b3fd4226ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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