summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/amaranth/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/amaranth/default.nix b/pkgs/development/python-modules/amaranth/default.nix
index ad2cacb2ced8..e441daefcd43 100644
--- a/pkgs/development/python-modules/amaranth/default.nix
+++ b/pkgs/development/python-modules/amaranth/default.nix
@@ -19,15 +19,14 @@
buildPythonPackage rec {
pname = "amaranth";
format = "pyproject";
- # python -m setuptools_scm
- version = "0.4.dev197+g${lib.substring 0 7 src.rev}";
+ version = "0.4.3";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "amaranth-lang";
repo = "amaranth";
- rev = "11d5bb19eb34463918c07dc5e2e0eac7dbf822b0";
- sha256 = "sha256-Ji5oYfF2hKSunAdAQTniv8Ajj6NE/bvW5cvadrGKa+U=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-03uAaD4aEMxu/T1D8Hb7XcWvZZuaCK5HmdOD9bx+ZIc=";
};
nativeBuildInputs = [
@@ -55,6 +54,6 @@ buildPythonPackage rec {
description = "A modern hardware definition language and toolchain based on Python";
homepage = "https://amaranth-lang.org/docs/amaranth";
license = licenses.bsd2;
- maintainers = with maintainers; [ emily thoughtpolice ];
+ maintainers = with maintainers; [ emily thoughtpolice pbsds ];
};
}