gnu: python-cfgv: Update to 3.4.0.

* gnu/packages/python-xyz.scm (python-cfgv): Update to 3.4.0.
[build-system]: Use pyproject-build-system.
[arguments]: Do not override the check phase.

Change-Id: Id666a57e4d619697ffa272893930f1c94d5c283e
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Vinicius Monego 2024-06-01 16:57:56 +02:00 committed by Sharlatan Hellseher
parent 7059f2ec10
commit 3d4423c0ce
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -28761,7 +28761,7 @@ (define-public python-dns-lexicon
(define-public python-cfgv (define-public python-cfgv
(package (package
(name "python-cfgv") (name "python-cfgv")
(version "3.3.1") (version "3.4.0")
(source (source
(origin (origin
;; There are no tests in the PyPI tarball. ;; There are no tests in the PyPI tarball.
@ -28771,15 +28771,8 @@ (define-public python-cfgv
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1pci97cmn3v45sfch9s3lshidrl0309ls9byidic0l8drkwnkwcj")))) (base32 "0g7jg6dssyax6k85lk8afs8qdzgq138g6ij0jmmhgdv5fzks6k9z"))))
(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" "-vv")))))))
(native-inputs (native-inputs
(list python-pytest python-setuptools python-wheel)) (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/asottile/cfgv") (home-page "https://github.com/asottile/cfgv")