me
/
guix
Archived
1
0
Fork 0

gnu: python-singledispatch: Update to 4.0.0.

* gnu/packages/python-xyz.scm (python-singledispatch): Update to 4.0.0.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-pytest.
master
John Kehayias 2023-04-20 15:29:36 -04:00
parent 68e23d48f4
commit dc26fd56f4
No known key found for this signature in database
GPG Key ID: 499097AE5EA815D9
1 changed files with 6 additions and 5 deletions

View File

@ -114,7 +114,7 @@
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
;;; Copyright © 2021 Filip Lajszczak <filip@lajszczak.dev>
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022, 2023 John Kehayias <john.kehayias@protonmail.com>
;;; Copyright © 2022 Aleksandr Vityazev <avityazev@posteo.org>
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
@ -10924,17 +10924,18 @@ low-level X clients. It is written entirely in Python.")
(define-public python-singledispatch
(package
(name "python-singledispatch")
(version "3.4.0.3")
(version "4.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "singledispatch" version))
(sha256
(base32
"171b7ip0hsq5qm83np40h3phlr36ym18w0lay0a8v08kvy3sy1jv"))))
(build-system python-build-system)
"1z5qbbvvjvh3cwcjv57p7vzhayx0j1ysnvjq0d5py6k5d2ljghzk"))))
(build-system pyproject-build-system)
(native-inputs
(list python-six)) ; required for conversion, not at run-time
(list python-pytest
python-six)) ; required for conversion, not at run-time
(home-page
"https://docs.python.org/3/library/functools.html#functools.singledispatch")
(synopsis "Backport of singledispatch feature from Python 3.4")