gnu: python-pytest: Update to 5.3.2.

* gnu/packages/check.scm (python-pytest): Update to 5.3.2.
[propagated-inputs]: Add PYTHON-WCWIDTH and PYTHON-PACKAGING-BOOTSTRAP.
[native-inputs]: Add PYTHON-XMLSCHEMA.
[arguments]: Support overriding check phase with #:tests?.
(python2-pytest): Stay on version 4.4.2.
(python2-pytest-bootstrap): Inherit from PYTHON2-PYTEST instead of
PYTHON-PYTEST-BOOTSTRAP.
* gnu/packages/python-xyz.scm (python-packaging-bootstrap): New public variable.
This commit is contained in:
Marius Bakke 2020-01-15 22:03:00 +01:00
parent 17263ef5e8
commit c5d399090e
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA
2 changed files with 79 additions and 28 deletions

View file

@ -13121,6 +13121,17 @@ information.")
;; licenses.
(license (list license:asl2.0 license:bsd-2))))
;; A variant with minimal dependencies, for bootstrapping Pytest.
(define-public python-packaging-bootstrap
(hidden-package
(package/inherit
python-packaging
(name "python-packaging-bootstrap")
(native-inputs '())
(propagated-inputs
`(("python-pyparsing" ,python-pyparsing)))
(arguments '(#:tests? #f)))))
(define-public python2-packaging
(package-with-python2 python-packaging))