Archived
1
0
Fork 0

gnu: python-pluggy: Update to 0.13.1.

* gnu/packages/python-xyz.scm (python-pluggy): Update to 0.13.1.
[properties]: New field.
(python2-pluggy): Stay on 0.11.0.
This commit is contained in:
Marius Bakke 2020-01-15 22:02:22 +01:00
parent 3b5378a87f
commit 17263ef5e8
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -8751,14 +8751,14 @@ library as well as on the command line.")
(define-public python-pluggy (define-public python-pluggy
(package (package
(name "python-pluggy") (name "python-pluggy")
(version "0.11.0") (version "0.13.1")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pluggy" version)) (uri (pypi-uri "pluggy" version))
(sha256 (sha256
(base32 (base32
"10511a54dvafw1jrk75mrhml53c7b7w4yaw7241696lc2hfvr895")))) "1c35qyhvy27q9ih9n899f3h4sdnpgq027dbiilly2qb5cvgarchm"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
`(("python-setuptools-scm" ,python-setuptools-scm))) `(("python-setuptools-scm" ,python-setuptools-scm)))
@ -8766,10 +8766,21 @@ library as well as on the command line.")
(description "Pluggy is an extraction of the plugin manager as used by (description "Pluggy is an extraction of the plugin manager as used by
Pytest but stripped of Pytest specific details.") Pytest but stripped of Pytest specific details.")
(home-page "https://pypi.python.org/pypi/pluggy") (home-page "https://pypi.python.org/pypi/pluggy")
(properties `((python2-variant . ,(delay python2-pluggy))))
(license license:expat))) (license license:expat)))
(define-public python2-pluggy (define-public python2-pluggy
(package-with-python2 python-pluggy)) (let ((base (package-with-python2 (strip-python2-variant
python-pluggy))))
(package/inherit
base
(version "0.11.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "pluggy" version))
(sha256
(base32
"10511a54dvafw1jrk75mrhml53c7b7w4yaw7241696lc2hfvr895")))))))
(define-public python-tox (define-public python-tox
(package (package