Skip to content

Commit cedc4cc

Browse files
authored
python3Packages.slh-dsa: init at 0.1.3 (#433971)
2 parents 2dfd62c + 2cce703 commit cedc4cc

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
pdm-backend,
6+
}:
7+
8+
buildPythonPackage rec {
9+
pname = "slh-dsa";
10+
version = "0.1.3";
11+
pyproject = true;
12+
13+
src = fetchPypi {
14+
pname = "slh_dsa";
15+
inherit version;
16+
hash = "sha256-0OtjlI/w3F0OWu+fsQI9M3lIQY0Nx48YbvoGcQ0AJ1Y=";
17+
};
18+
19+
build-system = [ pdm-backend ];
20+
21+
pythonImportsCheck = [ "slhdsa" ];
22+
23+
meta = with lib; {
24+
description = "Pure Python implementation of the SLH-DSA algorithm";
25+
homepage = "https://github.com/colinxu2020/slhdsa";
26+
license = licenses.mit;
27+
maintainers = with maintainers; [ prusnak ];
28+
};
29+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16706,6 +16706,8 @@ self: super: with self; {
1670616706
}
1670716707
);
1670816708

16709+
slh-dsa = callPackage ../development/python-modules/slh-dsa { };
16710+
1670916711
slicedimage = callPackage ../development/python-modules/slicedimage { };
1671016712

1671116713
slicer = callPackage ../development/python-modules/slicer { };

0 commit comments

Comments
 (0)