aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2019-12-18 09:53:48 +0200
committerEfraim Flashner <efraim@flashner.co.il>2019-12-18 09:53:48 +0200
commitc57b8419f4b9ccd4ee27ed052346f192b9e28366 (patch)
tree6e7a67d0040650008ff70f52865c07ea805ab933
parent356a79becc4061d158c68718ad169abac1ab672f (diff)
downloadguix-c57b8419f4b9ccd4ee27ed052346f192b9e28366.tar.gz
guix-c57b8419f4b9ccd4ee27ed052346f192b9e28366.zip
gnu: python-ecdsa: Update to 0.14.1.
* gnu/packages/python-crypto.scm (python-ecdsa): Update to 0.14.1. [inputs]: Move openssl ... [native-inputs]: ... to here. [propagated-inputs]: Add python-six.
-rw-r--r--gnu/packages/python-crypto.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm
index af51ae04b6..65594a5aa6 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -232,15 +232,17 @@ Python interface around SSH networking concepts.")
(define-public python-ecdsa
(package
(name "python-ecdsa")
- (version "0.13.3")
+ (version "0.14.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "ecdsa" version))
(sha256
- (base32 "0k9xxklf865g6x43gkfarwb25ffrkmpvkzkh71rylqx7cjq80g0n"))))
+ (base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
(build-system python-build-system)
- (inputs
+ (propagated-inputs
+ `(("python-six" ,python-six)))
+ (native-inputs
`(("openssl" ,openssl)))
(home-page "https://github.com/warner/python-ecdsa")
(synopsis "ECDSA cryptographic signature library (pure python)")
baaaebf90a'>gnu: Add tree-sitter-bash.Andrew Tropin 2023-02-14gnu: Add tree-sitter-elixir.Andrew Tropin 2023-02-14gnu: Add tree-sitter-css.Andrew Tropin 2023-02-14gnu: Add tree-sitter-cpp.Andrew Tropin 2023-02-14gnu: Add tree-sitter-c.Andrew Tropin 2023-02-14gnu: Add tree-sitter-typescript.Andrew Tropin 2023-02-14gnu: Add tree-sitter-javascript.Andrew Tropin 2023-02-14gnu: tree-sitter-grammar: Extend functionality.Andrew Tropin 2023-02-12gnu: tree-sitter-grammar: Migrate to tree-sitter-build-system.Andrew Tropin 2023-02-12gnu: tree-sitter-cli: Enable some tests and add node and dot.Pierre Langlois 2023-02-09gnu: Add tree-sitter-grammar-html.Andrew Tropin 2023-02-09gnu: Add tree-sitter-cli.Pierre Langlois 2023-02-09gnu: tree-sitter: Update package style.Andrew Tropin 2023-02-09gnu: tree-sitter: Update to 0.20.7.Pierre Langlois 2023-02-09gnu: tree-sitter: Move to its own module.Pierre Langlois