python3Packages.slip10: init at 1.0.1

This commit is contained in:
Pavol Rusnak
2025-02-12 16:14:23 +01:00
parent f810504d28
commit 68ed22f8e1
2 changed files with 41 additions and 0 deletions
@@ -0,0 +1,39 @@
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
base58,
cryptography,
ecdsa,
}:
buildPythonPackage rec {
pname = "slip10";
version = "1.0.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-ArNQrlV7WReRQosXVR+V16xX6SEfN969yBTJC0oSOlQ=";
};
build-system = [ poetry-core ];
propagatedBuildInputs = [
base58
cryptography
ecdsa
];
pythonImportsCheck = [ "slip10" ];
meta = with lib; {
description = "Minimalistic implementation of SLIP109";
homepage = "https://github.com/trezor/python-slip10";
license = licenses.bsd3;
maintainers = with maintainers; [
prusnak
];
};
}
+2
View File
@@ -15114,6 +15114,8 @@ self: super: with self; {
slicerator = callPackage ../development/python-modules/slicerator { };
slip10 = callPackage ../development/python-modules/slip10 { };
slither-analyzer = callPackage ../development/python-modules/slither-analyzer { };
slimit = callPackage ../development/python-modules/slimit { };