Skip to content

Commit

Permalink
gnu: python-typing-inspect: Update to 0.9.0.
Browse files Browse the repository at this point in the history
* gnu/packages/python-xyz.scm (python-typing-inspect): Update to 0.9.0.
[source]: Remove patch, as
<ilevkivskyi/typing_inspect#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
  • Loading branch information
Hellseher authored and rekado committed Jan 20, 2025
1 parent 6976d48 commit 12faa42
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 44 deletions.
1 change: 0 additions & 1 deletion gnu/local.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2118,7 +2118,6 @@ dist_patch_DATA = \
%D%/packages/patches/python-robotframework-atest.patch \
%D%/packages/patches/python-robotframework-source-date-epoch.patch \
%D%/packages/patches/python-robotframework-sshlibrary-rf5-compat.patch \
%D%/packages/patches/python-typing-inspect-fix.patch \
%D%/packages/patches/python-unittest2-python3-compat.patch \
%D%/packages/patches/python-unittest2-remove-argparse.patch \
%D%/packages/patches/python-vega-datasets-remove-la-riots-code.patch \
Expand Down
38 changes: 0 additions & 38 deletions gnu/packages/patches/python-typing-inspect-fix.patch

This file was deleted.

14 changes: 9 additions & 5 deletions gnu/packages/python-xyz.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 12faa42

Please sign in to comment.