summaryrefslogtreecommitdiff
path: root/gnu/packages/python-crypto.scm
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 /gnu/packages/python-crypto.scm
parent356a79becc4061d158c68718ad169abac1ab672f (diff)
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.
Diffstat (limited to 'gnu/packages/python-crypto.scm')
-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 af51ae04b6e..65594a5aa6b 100644
--- a/gnu/packages/python-crypto.scm
+++ b/gnu/packages/python-crypto.scm
@@ -232,15 +232,17 @@ Python interface around SSH networking concepts.")
232(define-public python-ecdsa 232(define-public python-ecdsa
233 (package 233 (package
234 (name "python-ecdsa") 234 (name "python-ecdsa")
235 (version "0.13.3") 235 (version "0.14.1")
236 (source 236 (source
237 (origin 237 (origin
238 (method url-fetch) 238 (method url-fetch)
239 (uri (pypi-uri "ecdsa" version)) 239 (uri (pypi-uri "ecdsa" version))
240 (sha256 240 (sha256
241 (base32 "0k9xxklf865g6x43gkfarwb25ffrkmpvkzkh71rylqx7cjq80g0n")))) 241 (base32 "13nx5cbfxc0gnax5zwdmp9xc40qd1llk62mv85jyrvqkbw017ik4"))))
242 (build-system python-build-system) 242 (build-system python-build-system)
243 (inputs 243 (propagated-inputs
244 `(("python-six" ,python-six)))
245 (native-inputs
244 `(("openssl" ,openssl))) 246 `(("openssl" ,openssl)))
245 (home-page "https://github.com/warner/python-ecdsa") 247 (home-page "https://github.com/warner/python-ecdsa")
246 (synopsis "ECDSA cryptographic signature library (pure python)") 248 (synopsis "ECDSA cryptographic signature library (pure python)")