gnu: python-duniterpy: Change module.
* gnu/packages/python-crypto.scm (python-duniterpy): Move... * gnu/packages/finance.scm: ... here.
This commit is contained in:
parent
929d4d2f4a
commit
c729901583
2 changed files with 44 additions and 44 deletions
|
@ -755,6 +755,50 @@ Luhn and family of ISO/IEC 7064 check digit algorithms. ")
|
||||||
(define-public python2-stdnum
|
(define-public python2-stdnum
|
||||||
(package-with-python2 python-stdnum))
|
(package-with-python2 python-stdnum))
|
||||||
|
|
||||||
|
(define-public python-duniterpy
|
||||||
|
(package
|
||||||
|
(name "python-duniterpy")
|
||||||
|
(version "0.43.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
;; Pypi's default URI is missing "requirements.txt" file.
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/duniter/duniter-python-api.git")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ch4f150k1p1l876pp08p5rxqhpv5xfbxdw6njcmr06hspv8v8x4"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; Among 108 tests, a single one is failing: FAIL:
|
||||||
|
;; test_from_pubkey. Remove it.
|
||||||
|
(add-after 'unpack 'remove-failing-test
|
||||||
|
(lambda _
|
||||||
|
(delete-file "tests/documents/test_crc_pubkey.py")
|
||||||
|
#t)))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-aiohttp" ,python-aiohttp)
|
||||||
|
("python-base58" ,python-base58)
|
||||||
|
("python-jsonschema" ,python-jsonschema)
|
||||||
|
("python-libnacl" ,python-libnacl)
|
||||||
|
("python-pylibscrypt" ,python-pylibscrypt)
|
||||||
|
("python-pypeg2" ,python-pypeg2)))
|
||||||
|
(home-page "https://github.com/duniter/duniter-python-api")
|
||||||
|
(synopsis "Python implementation of Duniter API")
|
||||||
|
(description "@code{duniterpy} is an implementation of
|
||||||
|
@uref{https://github.com/duniter/duniter/, duniter} API. Its
|
||||||
|
main features are:
|
||||||
|
@itemize
|
||||||
|
@item Supports Duniter's Basic Merkle API and protocol
|
||||||
|
@item Asynchronous
|
||||||
|
@item Duniter signing key
|
||||||
|
@end itemize")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public silkaj
|
(define-public silkaj
|
||||||
(package
|
(package
|
||||||
(name "silkaj")
|
(name "silkaj")
|
||||||
|
|
|
@ -944,50 +944,6 @@ been constructed to maintain extensive documentation on how to use
|
||||||
@code{NaCl} as well as being completely portable.")
|
@code{NaCl} as well as being completely portable.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-duniterpy
|
|
||||||
(package
|
|
||||||
(name "python-duniterpy")
|
|
||||||
(version "0.43.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
;; Pypi's default URI is missing "requirements.txt" file.
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/duniter/duniter-python-api.git")
|
|
||||||
(commit version)))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1ch4f150k1p1l876pp08p5rxqhpv5xfbxdw6njcmr06hspv8v8x4"))))
|
|
||||||
(build-system python-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; Among 108 tests, a single one is failing: FAIL:
|
|
||||||
;; test_from_pubkey. Remove it.
|
|
||||||
(add-after 'unpack 'remove-failing-test
|
|
||||||
(lambda _
|
|
||||||
(delete-file "tests/documents/test_crc_pubkey.py")
|
|
||||||
#t)))))
|
|
||||||
(propagated-inputs
|
|
||||||
`(("python-aiohttp" ,python-aiohttp)
|
|
||||||
("python-base58" ,python-base58)
|
|
||||||
("python-jsonschema" ,python-jsonschema)
|
|
||||||
("python-libnacl" ,python-libnacl)
|
|
||||||
("python-pylibscrypt" ,python-pylibscrypt)
|
|
||||||
("python-pypeg2" ,python-pypeg2)))
|
|
||||||
(home-page "https://github.com/duniter/duniter-python-api")
|
|
||||||
(synopsis "Python implementation of Duniter API")
|
|
||||||
(description "@code{duniterpy} is an implementation of
|
|
||||||
@uref{https://github.com/duniter/duniter/, duniter} API. Its
|
|
||||||
main features are:
|
|
||||||
@itemize
|
|
||||||
@item Supports Duniter's Basic Merkle API and protocol
|
|
||||||
@item Asynchronous
|
|
||||||
@item Duniter signing key
|
|
||||||
@end itemize")
|
|
||||||
(license license:gpl3+)))
|
|
||||||
|
|
||||||
(define-public python-scrypt
|
(define-public python-scrypt
|
||||||
(package
|
(package
|
||||||
(name "python-scrypt")
|
(name "python-scrypt")
|
||||||
|
|
Reference in a new issue