gnu: python-absl-py: Update to 1.4.0.

* gnu/packages/python-xyz.scm (python-absl-py): Update to 1.4.0.
[arguments]: Remove 'patch-version-check phase.
[propagated-inputs]: Remove python-six.

Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
Felix Gruber 2023-05-27 18:21:40 +00:00 committed by Christopher Baines
parent 9c16970209
commit e2f25b79cb
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -25473,26 +25473,15 @@ RFC 8265 and RFC 8266.")
(define-public python-absl-py
(package
(name "python-absl-py")
(version "0.6.1")
(version "1.4.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "absl-py" version))
(sha256
(base32
"1mp9lk0b2qa37b7y6ak4lvf6ifw2ylyy6bkf9ik77md3j4xrwlc7"))))
"0ga3b0m8lfsv1m3260p83lhis52yvz3d42q8gip4gfj823849hnj"))))
(build-system pyproject-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'patch-version-check
(lambda _
;; Python 3.10 is indeed more recent than Python 3.4.
(substitute* "setup.py"
((" or py_version\\[0\\] == '3'.*") ":")))))))
(propagated-inputs
(list python-six))
(home-page "https://github.com/abseil/abseil-py")
(synopsis "Abseil Python common libraries")
(description