Skip to content

Commit

Permalink
Merge pull request #97765 from freezeboy/fix-dependency-injector
Browse files Browse the repository at this point in the history
python2Packages.dependency-injector: add missing dependencies
  • Loading branch information
risicle committed Sep 13, 2020
2 parents 5d92cf5 + 2102764 commit b3fd422
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2 }:
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, six, unittest2, pyyaml, flask }:

let
testPath =
Expand All @@ -17,7 +17,7 @@ buildPythonPackage rec {
};

propagatedBuildInputs = [ six ];
checkInputs = [ unittest2 ];
checkInputs = [ unittest2 pyyaml flask ];

checkPhase = ''
unit2 discover -s tests/unit -p "${testPath}"
Expand Down

0 comments on commit b3fd422

Please sign in to comment.