gnu: python-tox: Update to 3.20.0.

* gnu/packages/python-xyz.scm (python-tox): Update to 3.20.0.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Joseph LaFreniere 2020-10-05 20:27:35 -05:00 committed by Mathieu Othacehe
parent 5b7e8b595e
commit a90964c982
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -10821,36 +10821,40 @@ Pytest but stripped of Pytest specific details.")
(define-public python-tox (define-public python-tox
(package (package
(name "python-tox") (name "python-tox")
(version "2.8.1") (version "3.20.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "tox" version)) (uri (pypi-uri "tox" version))
(sha256 (sha256
(base32 (base32
"1drp6mwm8wdypjym15ia8lwjxbhcksb9vzxg4ay5dh4ji57by2ny")))) "0nk0nyzhzamcrvn0qqzzy54isxxqwdi28swml7a2ym78c3f9sqpb"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
;; FIXME: Tests require pytest-timeout, which itself requires ;; FIXME: Tests require pytest-timeout, which itself requires
;; pytest>=2.8.0 for installation. ;; pytest>=2.8.0 for installation.
'(#:tests? #f)) '(#:tests? #f))
(propagated-inputs (propagated-inputs
`(("python-pluggy" ,python-pluggy) ; >=0.3.0,<0.4.0 `(("python-filelock" ,python-filelock)
("python-py" ,python-py) ("python-packaging" ,python-packaging)
("python-virtualenv" ,python-virtualenv))) ("python-pluggy" ,python-pluggy)
(native-inputs ("python-py" ,python-py)
`(; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout) ("python-six" ,python-six)
("python-pytest" ,python-pytest) ; >= 2.3.5 ("python-toml" ,python-toml)
("python-setuptools-scm" ,python-setuptools-scm))) ("python-virtualenv" ,python-virtualenv)))
(home-page "https://tox.readthedocs.io") (native-inputs
(synopsis "Virtualenv-based automation of test activities") `(; FIXME: Missing: ("python-pytest-timeout" ,python-pytest-timeout)
(description "Tox is a generic virtualenv management and test command line ("python-pytest" ,python-pytest) ; >= 2.3.5
("python-setuptools-scm" ,python-setuptools-scm)))
(home-page "https://tox.readthedocs.io")
(synopsis "Virtualenv-based automation of test activities")
(description "Tox is a generic virtualenv management and test command line
tool. It can be used to check that a package installs correctly with tool. It can be used to check that a package installs correctly with
different Python versions and interpreters, or run tests in each type of different Python versions and interpreters, or run tests in each type of
supported environment, or act as a frontend to continuous integration supported environment, or act as a frontend to continuous integration
servers.") servers.")
(license license:expat))) (license license:expat)))
(define-public python2-tox (define-public python2-tox
(package-with-python2 python-tox)) (package-with-python2 python-tox))