python3Packages.plac: disable on older Python releases

This commit is contained in:
Fabian Affolter 2022-03-31 09:10:35 +02:00 committed by GitHub
parent 82c13f17a3
commit d60bab9d7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,14 +2,19 @@
, buildPythonPackage
, fetchPypi
, python
, pythonOlder
}:
buildPythonPackage rec {
pname = "plac";
version = "1.3.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-OL3YZNBFD7dIGTqoF7nEWKj1MZ+/l7ImEVHPwKWBIJA=";
hash = "sha256-OL3YZNBFD7dIGTqoF7nEWKj1MZ+/l7ImEVHPwKWBIJA=";
};
checkPhase = ''
@ -17,6 +22,10 @@ buildPythonPackage rec {
${python.interpreter} -m unittest discover -p "*test_plac*"
'';
pythonImportsCheck = [
"plac"
];
meta = with lib; {
description = "Parsing the Command Line the Easy Way";
homepage = "https://github.com/micheles/plac";