Merge pull request #309703 from Sigmanificient/zhf-pycparser
python3Packages.pycparser: add python >= 3.8 check
This commit is contained in:
commit
9fb582619d
@ -1,4 +1,4 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, unittestCheckHook }:
|
||||
{ lib, buildPythonPackage, fetchPypi, unittestCheckHook, pythonOlder }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycparser";
|
||||
@ -11,6 +11,7 @@ buildPythonPackage rec {
|
||||
};
|
||||
|
||||
nativeCheckInputs = [ unittestCheckHook ];
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
unittestFlagsArray = [ "-s" "tests" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user