gnu: python-attrs: Update to 17.4.0.
* gnu/packages/python.scm (python-attrs)[version]: Update to 17.4.0. [native-inputs]: Add python-sphinx and python-coverage. Reorder inputs.
This commit is contained in:
parent
ef6a484475
commit
9c4ff532f9
|
@ -10729,19 +10729,22 @@ and bit flag values.")
|
||||||
(define-public python-attrs
|
(define-public python-attrs
|
||||||
(package
|
(package
|
||||||
(name "python-attrs")
|
(name "python-attrs")
|
||||||
(version "17.2.0")
|
(version "17.4.0")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (pypi-uri "attrs" version))
|
(method url-fetch)
|
||||||
(sha256
|
(uri (pypi-uri "attrs" version))
|
||||||
(base32
|
(sha256
|
||||||
"04gx08ikpk26wnq22f7l42gapcvk8iz1512r927k6sadz6cinkax"))))
|
(base32
|
||||||
|
"1jafnn1kzd6qhxgprhx6y6ik1r5m2rilx25syzcmq03azp660y8w"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-pytest" ,python-pytest)
|
`(("python-coverage" ,python-coverage)
|
||||||
("python-hypothesis" ,python-hypothesis)
|
("python-hypothesis" ,python-hypothesis)
|
||||||
("python-zope-interface" ,python-zope-interface)
|
("python-pytest" ,python-pytest)
|
||||||
("python-six" ,python-six)))
|
("python-six" ,python-six)
|
||||||
|
("python-sphinx" ,python-sphinx)
|
||||||
|
("python-zope-interface" ,python-zope-interface)))
|
||||||
(home-page "https://github.com/python-attrs/attrs/")
|
(home-page "https://github.com/python-attrs/attrs/")
|
||||||
(synopsis "Attributes without boilerplate")
|
(synopsis "Attributes without boilerplate")
|
||||||
(description "@code{attrs} is a Python package with class decorators that
|
(description "@code{attrs} is a Python package with class decorators that
|
||||||
|
|
Loading…
Reference in New Issue