gnu: python-pytest: Update to 3.7.2.
* gnu/packages/check.scm (python-pytest): Update to 3.7.2. (python2-pytest)[propagated-inputs]: Add PYTHON2-PATHLIB. (python2-pytest-bootstrap)[propagated-inputs]: Add PYTHON-PATHLIB2-BOOTSTRAP. * gnu/packages/python.scm (python2-pathlib2-bootstrap): New public variable.master
parent
27885fcc26
commit
e2da8bcd9e
|
@ -619,14 +619,14 @@ standard library.")
|
||||||
(define-public python-pytest
|
(define-public python-pytest
|
||||||
(package
|
(package
|
||||||
(name "python-pytest")
|
(name "python-pytest")
|
||||||
(version "3.6.4")
|
(version "3.7.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pytest" version))
|
(uri (pypi-uri "pytest" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0h85kzdi5pfkz9v0z8xyrsj1rvnmyyjpng7cran28jmnc41w27il"))))
|
"00jv750alrj62r586hcmvpqlmkqszqfm1x7n6qnqacjmmlis2n9l"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
|
@ -673,6 +673,7 @@ and many external plugins.")
|
||||||
(inherit pytest)
|
(inherit pytest)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python2-funcsigs" ,python2-funcsigs)
|
`(("python2-funcsigs" ,python2-funcsigs)
|
||||||
|
("python2-pathlib2" ,python2-pathlib2)
|
||||||
,@(package-propagated-inputs pytest))))))
|
,@(package-propagated-inputs pytest))))))
|
||||||
|
|
||||||
(define-public python-pytest-bootstrap
|
(define-public python-pytest-bootstrap
|
||||||
|
@ -689,6 +690,7 @@ and many external plugins.")
|
||||||
(package (inherit pytest)
|
(package (inherit pytest)
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python2-funcsigs" ,python2-funcsigs-bootstrap)
|
`(("python2-funcsigs" ,python2-funcsigs-bootstrap)
|
||||||
|
("python2-pathlib2" ,python2-pathlib2-bootstrap)
|
||||||
,@(package-propagated-inputs pytest))))))
|
,@(package-propagated-inputs pytest))))))
|
||||||
|
|
||||||
(define-public python-pytest-cov
|
(define-public python-pytest-cov
|
||||||
|
|
|
@ -8389,6 +8389,15 @@ ambiguities (forward vs. backward slashes, etc.).
|
||||||
@end enumerate")
|
@end enumerate")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python2-pathlib2-bootstrap
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(inherit python2-pathlib2)
|
||||||
|
(name "python2-pathlib2-bootstrap")
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python2-scandir" ,python2-scandir)
|
||||||
|
("python2-six" ,python2-six-bootstrap))))))
|
||||||
|
|
||||||
(define-public python-jellyfish
|
(define-public python-jellyfish
|
||||||
(package
|
(package
|
||||||
(name "python-jellyfish")
|
(name "python-jellyfish")
|
||||||
|
|
Reference in New Issue