pythonPackages.edalize: init at 0.4.0

This commit is contained in:
Astro 2022-08-05 23:18:48 +02:00
parent da1b01a144
commit 3be5a4dd6a
2 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,73 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, coreutils
, jinja2
, pandas
, pytestCheckHook
, which
, verilog
, yosys
}:
buildPythonPackage rec {
pname = "edalize";
version = "0.4.0";
src = fetchFromGitHub {
owner = "olofk";
repo = pname;
rev = "v${version}";
sha256 = "sha256-fpUNCxW7+uymodJ/yGME9VNcCEZdBROIdT1+blpgkzA=";
};
postPatch = ''
substituteInPlace tests/test_edam.py \
--replace /usr/bin/touch ${coreutils}/bin/touch
patchShebangs tests/mock_commands/vsim
'';
propagatedBuildInputs = [ jinja2 ];
checkInputs = [
pytestCheckHook
pandas
which
yosys
verilog
];
pythonImportsCheck = [ "edalize" ];
disabledTestPaths = [
"tests/test_apicula.py"
"tests/test_ascentlint.py"
"tests/test_diamond.py"
"tests/test_gatemate.py"
"tests/test_ghdl.py"
"tests/test_icarus.py"
"tests/test_icestorm.py"
"tests/test_ise.py"
"tests/test_mistral.py"
"tests/test_openlane.py"
"tests/test_oxide.py"
"tests/test_quartus.py"
"tests/test_radiant.py"
"tests/test_spyglass.py"
"tests/test_symbiyosys.py"
"tests/test_trellis.py"
"tests/test_vcs.py"
"tests/test_veribleformat.py"
"tests/test_veriblelint.py"
"tests/test_vivado.py"
"tests/test_xcelium.py"
"tests/test_xsim.py"
];
meta = with lib; {
description = "Abstraction library for interfacing EDA tools";
homepage = "https://github.com/olofk/edalize";
license = licenses.bsd2;
maintainers = [ maintainers.astro ];
};
}

View file

@ -2851,6 +2851,8 @@ in {
ed25519 = callPackage ../development/python-modules/ed25519 { };
edalize = callPackage ../development/python-modules/edalize { };
editables = callPackage ../development/python-modules/editables { };
editdistance = callPackage ../development/python-modules/editdistance { };