mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-fire: Update to 0.7.0.
* gnu/packages/python-xyz.scm (python-fire): Update to 0.7.0. [build-system]: Use pyproject-build-system. [arguments]: Do not override the 'check' phase. [propagated-inputs]: Remove python-six. [native-inputs]: Remove python-mock. Add python-setuptools, python-wheel. Change-Id: Id75b22101cae1ee17334bb89f91eebc0e7e5001d
This commit is contained in:
parent
465d9c7077
commit
23510c1df6
1 changed files with 5 additions and 12 deletions
|
@ -1728,26 +1728,19 @@ that they are acceptable to modern bowsers")
|
||||||
(define-public python-fire
|
(define-public python-fire
|
||||||
(package
|
(package
|
||||||
(name "python-fire")
|
(name "python-fire")
|
||||||
(version "0.6.0")
|
(version "0.7.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "fire" version))
|
(uri (pypi-uri "fire" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0rmaw26xjndr7makpiqv4h9aav9xf2h280w0khqc1lyddscmpv2l"))))
|
"1pswm79gi51p596zmfvaskx0i15znbr610yws5dgdsing7q505cn"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
'(#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key tests? #:allow-other-keys)
|
|
||||||
(when tests?
|
|
||||||
(invoke "pytest")))))))
|
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-six python-termcolor))
|
(list python-termcolor))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-mock python-pytest))
|
(list python-pytest python-setuptools python-wheel))
|
||||||
(synopsis "Library for automatically generating command line interfaces")
|
(synopsis "Library for automatically generating command line interfaces")
|
||||||
(description
|
(description
|
||||||
"Fire is a library for automatically generating command line interfaces
|
"Fire is a library for automatically generating command line interfaces
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue