gnu: python-pytest: Update to 7.1.3.
* gnu/packages/check.scm (python-pytest): Update to 7.1.3. [native-inputs]: Remove PYTHON-MOCK and PYTHON-TOML. [propagated-inputs]: Remove PYTHON-MORE-ITERTOOLS, PYTHON-SIX-BOOTSTRAP, PYTHON-TOML, and PYTHON-WCWIDTH. Add PYTHON-TOMLI. (python-pytest-bootstrap)[native-inputs]: Replace PYTHON-TOML with PYTHON-TOMLI.master
parent
9912024c34
commit
c5dd6e5d40
|
@ -973,14 +973,14 @@ standard library.")
|
||||||
(define-public python-pytest
|
(define-public python-pytest
|
||||||
(package
|
(package
|
||||||
(name "python-pytest")
|
(name "python-pytest")
|
||||||
(version "6.2.5")
|
(version "7.1.3")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pytest" version))
|
(uri (pypi-uri "pytest" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"12cyi0lnyaq8sdqfnqlppd76gkw6zcg10gyih5knx9v611l3c6qk"))))
|
"0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -1007,22 +1007,17 @@ standard library.")
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-attrs-bootstrap
|
(list python-attrs-bootstrap
|
||||||
python-iniconfig
|
python-iniconfig
|
||||||
python-more-itertools
|
|
||||||
python-packaging-bootstrap
|
python-packaging-bootstrap
|
||||||
python-pluggy
|
python-pluggy
|
||||||
python-py
|
python-py
|
||||||
python-six-bootstrap
|
python-tomli))
|
||||||
python-toml
|
|
||||||
python-wcwidth))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
|
(list ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
|
||||||
bash
|
bash
|
||||||
python-hypothesis
|
python-hypothesis
|
||||||
python-nose
|
python-nose
|
||||||
python-mock
|
|
||||||
python-pytest-bootstrap
|
python-pytest-bootstrap
|
||||||
python-setuptools-scm
|
python-setuptools-scm
|
||||||
python-toml
|
|
||||||
python-xmlschema))
|
python-xmlschema))
|
||||||
(home-page "https://docs.pytest.org/en/latest/")
|
(home-page "https://docs.pytest.org/en/latest/")
|
||||||
(synopsis "Python testing library")
|
(synopsis "Python testing library")
|
||||||
|
@ -1039,7 +1034,7 @@ and many external plugins.")
|
||||||
(inherit python-pytest)
|
(inherit python-pytest)
|
||||||
(name "python-pytest-bootstrap")
|
(name "python-pytest-bootstrap")
|
||||||
(native-inputs (list python-iniconfig python-setuptools-scm
|
(native-inputs (list python-iniconfig python-setuptools-scm
|
||||||
python-toml))
|
python-tomli))
|
||||||
(arguments `(#:tests? #f))))
|
(arguments `(#:tests? #f))))
|
||||||
|
|
||||||
(define-public python-pytest-assume
|
(define-public python-pytest-assume
|
||||||
|
|
Reference in New Issue