pythonPackages.entrypoints: Fix buildInputs (#39449)

This commit is contained in:
Timo Kaufmann 2018-04-25 01:23:44 +02:00 committed by Jörg Thalheim
parent a8fc951404
commit b75b5cdc79

View File

@ -15,9 +15,9 @@ buildPythonPackage rec {
sha256 = "d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f";
};
checkInputs = [ pytest];
checkInputs = [ pytest ];
propagatedBuildInputs = [] ++ lib.optional (!isPy3k) [ configparser ];
propagatedBuildInputs = lib.optional (!isPy3k) configparser;
checkPhase = ''
py.test tests
@ -28,4 +28,4 @@ buildPythonPackage rec {
homepage = https://github.com/takluyver/entrypoints;
license = lib.licenses.mit;
};
}
}