gnu: python-dateutil: Update to 2.8.0.
* gnu/packages/time.scm (python-dateutil): Update to 2.8.0. [arguments]: New field. [native-inputs]: Add PYTHON-PYTEST.
This commit is contained in:
parent
9429590393
commit
de92ab21c1
|
@ -145,17 +145,31 @@ Pendulum instances.")
|
||||||
(define-public python-dateutil
|
(define-public python-dateutil
|
||||||
(package
|
(package
|
||||||
(name "python-dateutil")
|
(name "python-dateutil")
|
||||||
(version "2.7.3")
|
(version "2.8.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "python-dateutil" version))
|
(uri (pypi-uri "python-dateutil" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1f7h54lg0w2ckch7592xpjkh8dg87k2br256h0iw49zn6bg02w72"))))
|
"17nsfhy4xdz1khrfxa61vd7pmvd5z0wa3zb6v4gb4kfnykv0b668"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases (modify-phases %standard-phases
|
||||||
|
(replace 'check
|
||||||
|
(lambda _
|
||||||
|
;; Delete tests that depend on "freezegun" to avoid a
|
||||||
|
;; circular dependency.
|
||||||
|
(delete-file "dateutil/test/test_utils.py")
|
||||||
|
(delete-file "dateutil/test/test_rrule.py")
|
||||||
|
|
||||||
|
;; XXX: Fails to get timezone from /etc/localtime.
|
||||||
|
(delete-file "dateutil/test/test_tz.py")
|
||||||
|
|
||||||
|
(invoke "pytest" "-vv"))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-setuptools-scm" ,python-setuptools-scm)))
|
`(("python-pytest" ,python-pytest)
|
||||||
|
("python-setuptools-scm" ,python-setuptools-scm)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-six" ,python-six)))
|
`(("python-six" ,python-six)))
|
||||||
(home-page "https://dateutil.readthedocs.io/en/stable/")
|
(home-page "https://dateutil.readthedocs.io/en/stable/")
|
||||||
|
|
Loading…
Reference in New Issue