python310Packages.edalize: 0.4.1 -> 0.5.0

Diff: https://github.com/olofk/edalize/compare/refs/tags/v0.4.1...v0.5.0

Changelog: https://github.com/olofk/edalize/releases/tag/v0.5.0
This commit is contained in:
Fabian Affolter 2023-04-29 20:00:17 +02:00
parent 9229750630
commit 5fca56b3fb

View file

@ -4,6 +4,7 @@
, coreutils , coreutils
, jinja2 , jinja2
, pandas , pandas
, pyparsing
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, which , which
@ -12,7 +13,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "edalize"; pname = "edalize";
version = "0.4.1"; version = "0.5.0";
format = "setuptools"; format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
@ -21,7 +22,7 @@ buildPythonPackage rec {
owner = "olofk"; owner = "olofk";
repo = pname; repo = pname;
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-h6b0mdAUR4NsN2SpnLu5OgS9Fy9ZRitG+5Sbon1jlUM="; hash = "sha256-jsrJr/iuezh9/KL0PykWB1XKev4Wr5QeDh0ZWNMZSp8=";
}; };
postPatch = '' postPatch = ''
@ -34,12 +35,18 @@ buildPythonPackage rec {
jinja2 jinja2
]; ];
passthru.optional-dependencies = {
reporting = [
pandas
pyparsing
];
};
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
pandas
which which
yosys yosys
]; ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
pythonImportsCheck = [ pythonImportsCheck = [
"edalize" "edalize"