mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add python-starkbank-ecdsa.
* gnu/packages/python-crypto.scm (python-starkbank-ecdsa): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
afc490b957
commit
53be886d18
1 changed files with 27 additions and 0 deletions
|
@ -26,6 +26,7 @@
|
|||
;;; Copyright © 2020, 2021 Vinicius Monego <monego@posteo.net>
|
||||
;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||
;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
|
||||
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1651,3 +1652,29 @@ (define-public python-sop
|
|||
scaffolding for the command line, which should make it relatively easy to
|
||||
supply a handful of python functions as methods to a class.")
|
||||
(license license:expat))) ; MIT license
|
||||
|
||||
(define-public python-starkbank-ecdsa
|
||||
(package
|
||||
(name "python-starkbank-ecdsa")
|
||||
(version "2.0.3")
|
||||
(home-page "https://github.com/starkbank/ecdsa-python")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1k9h4p0frkgj76vrqfjim4mik98g09mivdxxcmxr6raa5jwr83sh"))))
|
||||
(arguments
|
||||
(list #:phases #~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'remove-broken-test
|
||||
(lambda _
|
||||
(delete-file "tests/testOpenSSL.py"))))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs (list python-pytest))
|
||||
(synopsis "Python ECDSA library")
|
||||
(description "This package provides a Python ECDSA library, optimized for
|
||||
speed but without C extensions.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue