Archived
1
0
Fork 0

gnu: python-fire: Update to 0.5.0.

* gnu/packages/python-xyz.scm (python-fire): Update to 0.5.0.
[inputs]: Remove python-six and python-termcolor.
[propagated-inputs]: Add python-six and python-termcolor.
This commit is contained in:
jgart 2023-05-26 02:42:31 -05:00
parent b4382b294e
commit ab4347a1ad
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -529,14 +529,14 @@ workspaces.
(define-public python-fire (define-public python-fire
(package (package
(name "python-fire") (name "python-fire")
(version "0.4.0") (version "0.5.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
"0qka44n88y3qcj7xz0k0f3qb4phcg4z0wvd4jcii9lcr6rvbiqn5")))) "1imc9ais15dz3gmphawql86l9av5dykbp4hz0883k5n8k2gd9c56"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
'(#:phases '(#:phases
@ -545,7 +545,7 @@ workspaces.
(lambda* (#:key tests? #:allow-other-keys) (lambda* (#:key tests? #:allow-other-keys)
(when tests? (when tests?
(invoke "pytest"))))))) (invoke "pytest")))))))
(inputs (propagated-inputs
(list python-six python-termcolor)) (list python-six python-termcolor))
(native-inputs (native-inputs
(list python-mock python-pytest)) (list python-mock python-pytest))