Unverified Commit 68ed22f8 authored by Pavol Rusnak's avatar Pavol Rusnak
Browse files

python3Packages.slip10: init at 1.0.1

parent f810504d
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{
  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 −0
Original line number Diff line number Diff line
@@ -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 { };