me
/
guix
Archived
1
0
Fork 0

gnu: python-click-default-group: Update to 1.2.4.

* gnu/packages/python-xyz.scm (python-click-default-group): Update to 1.2.4.
[build-system]: Use pyproject-build-system.
[native-inputs]: Add python-flit-core and python-pytest.

Change-Id: I7e617ee57499542b7e832bb5ea24417b70e8cf85
master
Ricardo Wurmus 2024-01-10 19:50:17 +01:00
parent 016d136d89
commit fbe0233575
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 6 deletions

View File

@ -17007,18 +17007,19 @@ applications.")
(define-public python-click-default-group (define-public python-click-default-group
(package (package
(name "python-click-default-group") (name "python-click-default-group")
(version "1.2.2") (version "1.2.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "click-default-group" version)) (uri (pypi-uri "click_default_group" version))
(sha256 (sha256
(base32 (base32
"015r78jk8gznfw0dphpwaqcx5mhg5822b55w5xbb6i7sin70wmnr")))) "07i5w47lbihcb3cvs08vynz725z9skvhhzrarnk6qi8dxjckqgzb"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments (list #:tests? #false)) ;there are none
`(#:tests? #f)) ; no target
(propagated-inputs (propagated-inputs
(list python-click)) (list python-click))
(native-inputs
(list python-flit-core python-pytest))
(synopsis "Extends click.Group") (synopsis "Extends click.Group")
(description "This package extends click.Group to invoke a command without (description "This package extends click.Group to invoke a command without
explicit subcommand name.") explicit subcommand name.")