diff options
| -rw-r--r-- | gnu/packages/python-crypto.scm | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/gnu/packages/python-crypto.scm b/gnu/packages/python-crypto.scm index 3529847ede7..a770b588ab5 100644 --- a/gnu/packages/python-crypto.scm +++ b/gnu/packages/python-crypto.scm | |||
| @@ -1825,24 +1825,27 @@ supply a handful of python functions as methods to a class.") | |||
| 1825 | (define-public python-starkbank-ecdsa | 1825 | (define-public python-starkbank-ecdsa |
| 1826 | (package | 1826 | (package |
| 1827 | (name "python-starkbank-ecdsa") | 1827 | (name "python-starkbank-ecdsa") |
| 1828 | (version "2.0.3") | 1828 | (version "2.2.0") |
| 1829 | (home-page "https://github.com/starkbank/ecdsa-python") | 1829 | (home-page "https://github.com/starkbank/ecdsa-python") |
| 1830 | (source (origin | 1830 | (source |
| 1831 | (method git-fetch) | 1831 | (origin |
| 1832 | (uri (git-reference | 1832 | (method git-fetch) |
| 1833 | (url home-page) | 1833 | (uri (git-reference |
| 1834 | (commit (string-append "v" version)))) | 1834 | (url home-page) |
| 1835 | (file-name (git-file-name name version)) | 1835 | (commit (string-append "v" version)))) |
| 1836 | (sha256 | 1836 | (file-name (git-file-name name version)) |
| 1837 | (base32 | 1837 | (sha256 |
| 1838 | "1k9h4p0frkgj76vrqfjim4mik98g09mivdxxcmxr6raa5jwr83sh")))) | 1838 | (base32 "01zy16csrbyfhjl0kay9rbpbwc3dpr7kh2qkrbdy5a1n644fbahx")))) |
| 1839 | (arguments | 1839 | (arguments |
| 1840 | (list #:phases #~(modify-phases %standard-phases | 1840 | (list |
| 1841 | (add-after 'unpack 'remove-broken-test | 1841 | #:test-backend #~'unittest |
| 1842 | (lambda _ | 1842 | #:phases |
| 1843 | (delete-file "tests/testOpenSSL.py")))))) | 1843 | #~(modify-phases %standard-phases |
| 1844 | (build-system python-build-system) | 1844 | (add-after 'unpack 'remove-broken-test |
| 1845 | (native-inputs (list python-pytest)) | 1845 | (lambda _ |
| 1846 | (delete-file "tests/testOpenSSL.py")))))) | ||
| 1847 | (build-system pyproject-build-system) | ||
| 1848 | (native-inputs (list python-setuptools)) | ||
| 1846 | (synopsis "Python ECDSA library") | 1849 | (synopsis "Python ECDSA library") |
| 1847 | (description "This package provides a Python ECDSA library, optimized for | 1850 | (description "This package provides a Python ECDSA library, optimized for |
| 1848 | speed but without C extensions.") | 1851 | speed but without C extensions.") |
