forked from mirrors/nixpkgs
python3Packages.karton-config-extractor: disable on older Python releses
This commit is contained in:
parent
f32c913596
commit
621ec997e4
|
@ -3,11 +3,15 @@
|
|||
, fetchFromGitHub
|
||||
, karton-core
|
||||
, malduck
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "karton-config-extractor";
|
||||
version = "2.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CERT-Polska";
|
||||
|
@ -28,7 +32,10 @@ buildPythonPackage rec {
|
|||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "karton.config_extractor" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"karton.config_extractor"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Static configuration extractor for the Karton framework";
|
||||
|
|
Loading…
Reference in a new issue