summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-10 21:38:13 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-18 14:37:02 +0100
commit46b7c7b4d2c5ae818a146435e32d6bc0830c3ee8 (patch)
tree859ad180cdf428baf9159a485cee46e365953cf0
parentcfc7bb69bd4a89b3802a3fe69fe1614c38ca6ce2 (diff)
gnu: Add python-bip32utils.
* gnu/packages/python-crypto.scm (python-bip32utils): New variable. Change-Id: I5f81400f3d2e1f0134f76c7e43ffb923b33f0853
-rw-r--r--gnu/packages/python-crypto.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index 93a50d033a..558c7e79a3 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -136,6 +136,33 @@ on the Blowfish password hashing algorithm, as described in
Password Scheme\"} by Niels Provos and David Mazieres.")
(license license:asl2.0)))
+(define-public python-bip32utils
+ (package
+ (name "python-bip32utils")
+ (version "0.3.post4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "bip32utils" version))
+ (sha256
+ (base32 "1hj8iirdwxj2f3gp0d3bmz4gfll26ixkidh6rk9qjykjpc7z8w2r"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list #:tests? #f)) ;no tests
+ (native-inputs
+ (list python-setuptools))
+ (propagated-inputs
+ (list python-ecdsa))
+ ;; Original link is gone <https://github.com/prusnak/bip32utils>.
+ (home-page "https://salsa.debian.org/debian/python-bip32utils")
+ (synopsis
+ "Python implementation of Bitcoin hierarchical deterministic wallet")
+ (description
+ "This package provides utilities for generating and using Bitcoin
+Hierarchical Deterministic wallets
+(BIP0032).")
+ (license license:expat)))
+
(define-public python-murmurhash
(package
(name "python-murmurhash")