mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
73 lines
1.3 KiB
Nix
73 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
pythonOlder,
|
|
fetchFromGitHub,
|
|
pdm-backend,
|
|
jschon,
|
|
pyvcd,
|
|
jinja2,
|
|
importlib-resources,
|
|
importlib-metadata,
|
|
git,
|
|
|
|
# for tests
|
|
pytestCheckHook,
|
|
sby,
|
|
yices,
|
|
yosys,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "amaranth";
|
|
format = "pyproject";
|
|
version = "0.5.3";
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "amaranth-lang";
|
|
repo = "amaranth";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-lPQw7fAVM7URdyC/9c/UIYsRxVXrLjvHODvhYBdlkkg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail \
|
|
"pdm-backend~=2.3.0" \
|
|
"pdm-backend>=2.3.0"
|
|
'';
|
|
|
|
nativeBuildInputs = [ git ];
|
|
build-system = [ pdm-backend ];
|
|
|
|
dependencies =
|
|
[
|
|
jschon
|
|
jinja2
|
|
pyvcd
|
|
]
|
|
++ lib.optional (pythonOlder "3.9") importlib-resources
|
|
++ lib.optional (pythonOlder "3.8") importlib-metadata;
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
sby
|
|
yices
|
|
yosys
|
|
];
|
|
|
|
pythonImportsCheck = [ "amaranth" ];
|
|
|
|
meta = with lib; {
|
|
description = "Modern hardware definition language and toolchain based on Python";
|
|
mainProgram = "amaranth-rpc";
|
|
homepage = "https://amaranth-lang.org/docs/amaranth";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [
|
|
thoughtpolice
|
|
pbsds
|
|
];
|
|
};
|
|
}
|