Merge pull request #33144 from catern/master

supervise: 1.0.0 -> 1.1.0 and supervise_api fixes
This commit is contained in:
Peter Hoeg
2018-01-11 11:51:28 +08:00
committed by GitHub
2 changed files with 12 additions and 13 deletions

View File

@@ -2,6 +2,8 @@
, buildPythonPackage
, fetchPypi
, supervise
, isPy3k
, whichcraft
}:
buildPythonPackage rec {
@@ -15,7 +17,11 @@ buildPythonPackage rec {
sha256 = "e6982633a924cb5192d2291d25b366ff311876a31b0f5961471b39d87397ef5b";
};
propagatedBuildInputs = [ supervise ];
propagatedBuildInputs = [
supervise
] ++ lib.optionals ( !isPy3k ) [
whichcraft
];
# no tests
doCheck = false;