diff options
Diffstat (limited to 'gnu/packages/finance.scm')
-rw-r--r-- | gnu/packages/finance.scm | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/gnu/packages/finance.scm b/gnu/packages/finance.scm index feb533eca7..cc2d417003 100644 --- a/gnu/packages/finance.scm +++ b/gnu/packages/finance.scm @@ -889,6 +889,23 @@ the Monero command line client and daemon.") the Monero GUI client.") (license license:bsd-3))) +(define-public python-bech32 + (package + (name "python-bech32") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "bech32" version)) + (sha256 + (base32 + "16fq5cfy5id9hp123ylhpl55pf38xwk0hv7sziqpig838qhvhvbx")))) + (build-system python-build-system) + (home-page "https://github.com/fiatjaf/bech32") + (synopsis "Reference implementation for Bech32 and Segwit addresses") + (description "This package provides a python reference implementation for +Bech32 and segwit addresses.") + (license license:expat))) + (define-public python-trezor-agent ;; It is called 'libagent' in pypi; i.e. this is the library as opposed to ;; the toplevel app called trezor-agent. @@ -2177,7 +2194,7 @@ mining.") (define-public p2pool (package (name "p2pool") - (version "2.5") + (version "2.6") (source (origin (method git-fetch) @@ -2186,7 +2203,7 @@ mining.") (commit (string-append "v" version)) (recursive? #t))) (file-name (git-file-name name version)) - (sha256 (base32 "1kdsxh6f24zp7h7bwkrin2mc81ysfny5wprzgy41h2bc6dpq067w")) + (sha256 (base32 "0832mv3f4c61w8s25higjbmmajjkvjdriw1xfygjiw5qxdcs202z")) (modules '((guix build utils))) (snippet #~(for-each delete-file-recursively |