mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
db8716173e
Obsoleted by https://github.com/pytest-dev/pytest/pull/9134, which was released as part of pytest 7.0.0. It has pytest<7 pinned, and we only have the single pytest version, so it can be removed.
50 lines
1.0 KiB
Nix
50 lines
1.0 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pythonOlder
|
|
, jinja2
|
|
, ply
|
|
, verilog
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyverilog";
|
|
version = "1.3.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1a74k8r21swmfwvgv4c014y6nbcyl229fspxw89ygsgb0j83xnar";
|
|
};
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
patchPhase = ''
|
|
# The path to Icarus can still be overridden via an environment variable at runtime.
|
|
substituteInPlace pyverilog/vparser/preprocessor.py \
|
|
--replace "iverilog = 'iverilog'" "iverilog = '${verilog}/bin/iverilog'"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
jinja2
|
|
ply
|
|
verilog
|
|
];
|
|
|
|
preCheck = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace "python_paths" "pythonpath"
|
|
'';
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/PyHDI/Pyverilog";
|
|
description = "Python-based Hardware Design Processing Toolkit for Verilog HDL";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ trepetti ];
|
|
};
|
|
}
|