python310Packages.edalize: disable on unsupported Python releases
- add format
This commit is contained in:
parent
c30e201d06
commit
9229750630
1 changed files with 10 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
|||
, jinja2
|
||||
, pandas
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, which
|
||||
, yosys
|
||||
}:
|
||||
|
@ -12,6 +13,9 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "edalize";
|
||||
version = "0.4.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "olofk";
|
||||
|
@ -26,7 +30,9 @@ buildPythonPackage rec {
|
|||
patchShebangs tests/mock_commands/vsim
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = [ jinja2 ];
|
||||
propagatedBuildInputs = [
|
||||
jinja2
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
|
@ -35,7 +41,9 @@ buildPythonPackage rec {
|
|||
yosys
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "edalize" ];
|
||||
pythonImportsCheck = [
|
||||
"edalize"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
"tests/test_questa_formal.py"
|
||||
|
|
Loading…
Reference in a new issue