summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-02-28 11:27:34 +0100
committerPeder Bergebakken Sundt <pbsds@hotmail.com>2024-02-28 12:06:15 +0100
commitce6be7a18389410dedc216064b9787d221eb94de (patch)
treecc7fecc584ffdea7806cb1443095ae3a01884dc9 /pkgs/development/python-modules
parent41194c12410a9b7022a6d03de0f7e63b32e81f03 (diff)
python311Packages.amaranth: 0.4.dev197+g11d5bb1 -> 0.4.3
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 ];
};
}