gnu: python-typing-inspect: Update to 0.9.0.

* gnu/packages/python-xyz.scm (python-typing-inspect): Update to 0.9.0.
[source]: Remove patch, as
<https://github.com/ilevkivskyi/typing_inspect/issues/60> was resolved.
[build-system]: Swap to pyproject-build-system.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.

* gnu/packages/patches/python-typing-inspect-fix.patch: Delete file.
* gnu/local.mk: Deregester the patch.

Change-Id: Idc6e8745d4b85624863a5c2dc24e533a7dd92f46
This commit is contained in:
Sharlatan Hellseher 2025-01-17 22:21:29 +00:00 committed by Ricardo Wurmus
parent 100efdbd7a
commit 3ce9151a03
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
3 changed files with 9 additions and 44 deletions

View file

@ -23087,17 +23087,21 @@ Python versions that don't natively support them.")
(define-public python-typing-inspect
(package
(name "python-typing-inspect")
(version "0.6.0")
(version "0.9.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "typing_inspect" version))
(sha256
(base32
"1dzs9a1pr23dhbvmnvms2jv7l7jk26023g5ysf0zvnq8b791s6wg"))
(patches (search-patches "python-typing-inspect-fix.patch"))))
(build-system python-build-system)
"0y0z8v4wr5bahlgzjd1il2z8vlfd2asiyb45wia6kvznyqpw8gxj"))))
(build-system pyproject-build-system)
(native-inputs
(list python-pytest
python-setuptools
python-wheel))
(propagated-inputs
(list python-mypy-extensions python-typing-extensions))
(list python-mypy-extensions
python-typing-extensions))
(home-page "https://github.com/ilevkivskyi/typing_inspect")
(synopsis "API for inspection of types in the Python @code{typing} module")
(description