diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-19 21:43:45 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-21 17:24:28 +0200 |
commit | e2da8bcd9ed9042db46ae37a32be5374acab4f45 (patch) | |
tree | c57b72759ac53f4c390f1d49935d8afbec6a8924 /gnu/packages/check.scm | |
parent | 27885fcc26b7f9eed37c0e587d6be00ee8bb9cb3 (diff) | |
download | guix-e2da8bcd9ed9042db46ae37a32be5374acab4f45.tar guix-e2da8bcd9ed9042db46ae37a32be5374acab4f45.tar.gz |
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.
Diffstat (limited to 'gnu/packages/check.scm')
-rw-r--r-- | gnu/packages/check.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 242c531652..7abe821209 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -619,14 +619,14 @@ standard library.") (define-public python-pytest (package (name "python-pytest") - (version "3.6.4") + (version "3.7.2") (source (origin (method url-fetch) (uri (pypi-uri "pytest" version)) (sha256 (base32 - "0h85kzdi5pfkz9v0z8xyrsj1rvnmyyjpng7cran28jmnc41w27il")))) + "00jv750alrj62r586hcmvpqlmkqszqfm1x7n6qnqacjmmlis2n9l")))) (build-system python-build-system) (arguments `(#:phases @@ -673,6 +673,7 @@ and many external plugins.") (inherit pytest) (propagated-inputs `(("python2-funcsigs" ,python2-funcsigs) + ("python2-pathlib2" ,python2-pathlib2) ,@(package-propagated-inputs pytest)))))) (define-public python-pytest-bootstrap @@ -689,6 +690,7 @@ and many external plugins.") (package (inherit pytest) (propagated-inputs `(("python2-funcsigs" ,python2-funcsigs-bootstrap) + ("python2-pathlib2" ,python2-pathlib2-bootstrap) ,@(package-propagated-inputs pytest)))))) (define-public python-pytest-cov |