pythonPackages.entrypoints: Fix buildInputs (#39449)
This commit is contained in:
parent
a8fc951404
commit
b75b5cdc79
@ -15,9 +15,9 @@ buildPythonPackage rec {
|
|||||||
sha256 = "d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f";
|
sha256 = "d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest];
|
checkInputs = [ pytest ];
|
||||||
|
|
||||||
propagatedBuildInputs = [] ++ lib.optional (!isPy3k) [ configparser ];
|
propagatedBuildInputs = lib.optional (!isPy3k) configparser;
|
||||||
|
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
py.test tests
|
py.test tests
|
||||||
@ -28,4 +28,4 @@ buildPythonPackage rec {
|
|||||||
homepage = https://github.com/takluyver/entrypoints;
|
homepage = https://github.com/takluyver/entrypoints;
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user