File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
development/python-modules/slh-dsa Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments