gnu: python-gevent: Update to 21.12.0.

* gnu/packages/python-xyz.scm (python-gevent): Update to 21.12.0.
[propagated-inputs]: Simplify.  Move PYTHON-OBJGRAPH ...
[native-inputs]: ... here.  Remove PYTHON-SIX.
This commit is contained in:
Marius Bakke 2022-01-18 16:18:38 +01:00
parent a59f4d111d
commit f5e78d4546
No known key found for this signature in database
GPG key ID: A2A06DF2A33A54FA

View file

@ -15693,13 +15693,13 @@ graphviz.")
(define-public python-gevent (define-public python-gevent
(package (package
(name "python-gevent") (name "python-gevent")
(version "21.1.2") (version "21.12.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "gevent" version)) (uri (pypi-uri "gevent" version))
(sha256 (sha256
(base32 (base32
"10f9y899y9nmq51pv4r1zb51b4w5yxx00sz5whvg9vm956hc432j")) "0kh9mmq811mzfgj60n64icybjp4ryjmfmy1vg7x92yrniibn92zl"))
(modules '((guix build utils))) (modules '((guix build utils)))
(snippet (snippet
'(begin '(begin
@ -15790,14 +15790,10 @@ graphviz.")
(invoke "python" "-m" "gevent.tests" "-unone" "--config" (invoke "python" "-m" "gevent.tests" "-unone" "--config"
"known_failures.py" "--ignore" "skipped_tests.txt")))))) "known_failures.py" "--ignore" "skipped_tests.txt"))))))
(propagated-inputs (propagated-inputs
`(("python-greenlet" ,python-greenlet) (list python-greenlet python-zope-event python-zope-interface))
("python-objgraph" ,python-objgraph)
("python-zope.event" ,python-zope-event)
("python-zope.interface" ,python-zope-interface)))
(native-inputs (native-inputs
(list python-six
;; For tests. ;; For tests.
python-dnspython python-psutil)) (list python-dnspython python-psutil python-objgraph))
(inputs (inputs
(list c-ares libev)) (list c-ares libev))
(home-page "https://www.gevent.org/") (home-page "https://www.gevent.org/")