mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-cfgv: Update to 3.3.1.
* gnu/packages/python-xyz.scm (python-cfgv): Update to 3.3.1. [arguments]: Respect TESTS? keyword in check phase. [native-inputs]: Remove PYTHON-COVERAGE and PYTHON-COVDEFAULTS.
This commit is contained in:
parent
6ba66072e0
commit
9046adf8ef
1 changed files with 6 additions and 5 deletions
|
@ -22577,7 +22577,7 @@ Let's Encrypt.")
|
||||||
(define-public python-cfgv
|
(define-public python-cfgv
|
||||||
(package
|
(package
|
||||||
(name "python-cfgv")
|
(name "python-cfgv")
|
||||||
(version "3.1.0")
|
(version "3.3.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
;; There are no tests in the PyPI tarball.
|
;; There are no tests in the PyPI tarball.
|
||||||
|
@ -22587,16 +22587,17 @@ Let's Encrypt.")
|
||||||
(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 "1vvkkqw92sak4b28bpscpppq483amy52ch2yqy1i2m23q7xjkabx"))))
|
(base32 "1pci97cmn3v45sfch9s3lshidrl0309ls9byidic0l8drkwnkwcj"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "pytest" "-vv"))))))
|
(when tests?
|
||||||
|
(invoke "pytest" "-vv")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-covdefaults python-coverage python-pytest))
|
(list python-pytest))
|
||||||
(home-page "https://github.com/asottile/cfgv")
|
(home-page "https://github.com/asottile/cfgv")
|
||||||
(synopsis "Configuration validation library")
|
(synopsis "Configuration validation library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue