Files
nixpkgs/pkgs/development/python-modules/myhdl/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

52 lines
1.2 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
iverilog,
ghdl,
pytest,
pytest-xdist,
}:
buildPythonPackage {
pname = "myhdl";
# The stable version is from 2019 and it doesn't pass tests
version = "unstable-2022-04-26";
format = "setuptools";
# The pypi src doesn't contain the ci script used in checkPhase
src = fetchFromGitHub {
owner = "myhdl";
repo = "myhdl";
rev = "1a4f5cd4e9de2e7bbf1053c3c2bc9526b5cc524a";
hash = "sha256-Tgoem88Y6AhlCKVhMm0Khg6GPcrEktYOqV8xcMaNkl4=";
};
nativeCheckInputs = [
pytest
pytest-xdist
iverilog
ghdl
];
passthru = {
# If using myhdl as a dependency, use these if needed and not ghdl and
# verlog from all-packages.nix
inherit ghdl iverilog;
};
checkPhase = ''
runHook preCheck
for target in {core,iverilog,ghdl}; do
env CI_TARGET="$target" bash ./scripts/ci.sh
done;
runHook postCheck
'';
meta = {
description = "Free, open-source package for using Python as a hardware description and verification language";
homepage = "https://www.myhdl.org/";
license = lib.licenses.lgpl21;
maintainers = with lib.maintainers; [ doronbehar ];
};
}