python3Packages.slh-dsa: init at 0.1.3 (#433971)

This commit is contained in:
Pavol Rusnak 2025-08-15 14:03:39 +02:00 committed by GitHub
commit cedc4cc963
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{
lib,
buildPythonPackage,
fetchPypi,
pdm-backend,
}:
buildPythonPackage rec {
pname = "slh-dsa";
version = "0.1.3";
pyproject = true;
src = fetchPypi {
pname = "slh_dsa";
inherit version;
hash = "sha256-0OtjlI/w3F0OWu+fsQI9M3lIQY0Nx48YbvoGcQ0AJ1Y=";
};
build-system = [ pdm-backend ];
pythonImportsCheck = [ "slhdsa" ];
meta = with lib; {
description = "Pure Python implementation of the SLH-DSA algorithm";
homepage = "https://github.com/colinxu2020/slhdsa";
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}

View File

@ -16706,6 +16706,8 @@ self: super: with self; {
}
);
slh-dsa = callPackage ../development/python-modules/slh-dsa { };
slicedimage = callPackage ../development/python-modules/slicedimage { };
slicer = callPackage ../development/python-modules/slicer { };