Skip to content

Commit 2cce703

Browse files
committed
python3Packages.slh-dsa: init at 0.1.3
1 parent c5e33f7 commit 2cce703

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
@@ -16646,6 +16646,8 @@ self: super: with self; {
1664616646
}
1664716647
);
1664816648

16649+
slh-dsa = callPackage ../development/python-modules/slh-dsa { };
16650+
1664916651
slicedimage = callPackage ../development/python-modules/slicedimage { };
1665016652

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

0 commit comments

Comments
 (0)