python3Packages.slip10: init at 1.0.1
This commit is contained in:
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user