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.
This commit is contained in:
parent
68e23d48f4
commit
dc26fd56f4
1 changed files with 6 additions and 5 deletions
|
@ -114,7 +114,7 @@
|
||||||
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
|
;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
|
||||||
;;; Copyright © 2021 Filip Lajszczak <filip@lajszczak.dev>
|
;;; Copyright © 2021 Filip Lajszczak <filip@lajszczak.dev>
|
||||||
;;; Copyright © 2021 Greg Hogan <code@greghogan.com>
|
;;; 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 Aleksandr Vityazev <avityazev@posteo.org>
|
||||||
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
|
;;; Copyright © 2022 Evgeny Pisemsky <evgeny@pisemsky.com>
|
||||||
;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
|
;;; Copyright © 2022 drozdov <drozdov@portalenergy.tech>
|
||||||
|
@ -10924,17 +10924,18 @@ low-level X clients. It is written entirely in Python.")
|
||||||
(define-public python-singledispatch
|
(define-public python-singledispatch
|
||||||
(package
|
(package
|
||||||
(name "python-singledispatch")
|
(name "python-singledispatch")
|
||||||
(version "3.4.0.3")
|
(version "4.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "singledispatch" version))
|
(uri (pypi-uri "singledispatch" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"171b7ip0hsq5qm83np40h3phlr36ym18w0lay0a8v08kvy3sy1jv"))))
|
"1z5qbbvvjvh3cwcjv57p7vzhayx0j1ysnvjq0d5py6k5d2ljghzk"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(native-inputs
|
(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
|
(home-page
|
||||||
"https://docs.python.org/3/library/functools.html#functools.singledispatch")
|
"https://docs.python.org/3/library/functools.html#functools.singledispatch")
|
||||||
(synopsis "Backport of singledispatch feature from Python 3.4")
|
(synopsis "Backport of singledispatch feature from Python 3.4")
|
||||||
|
|
Reference in a new issue