gnu: python-typeshed-client: Update to 2.8.2.

* gnu/packages/python-xyz.scm (python-typeshed-client): Update to 2.8.2.
[source]: Switch to git-fetch providing test data.
[arguments] <test-backend>: Use custom.
[propagated-inputs]: Add python-typing-extensions.
[native-inputs]: Remove python-wheel.

Change-Id: Icfbb809b45e0ca9e4b29237f0f622d77928f9730
This commit is contained in:
Sharlatan Hellseher 2025-10-15 14:33:24 +01:00
parent 5f6cbf433b
commit 4c88f358ce
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -36299,16 +36299,25 @@ Python, with static types.")
(define-public python-typeshed-client
(package
(name "python-typeshed-client")
(version "2.3.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "typeshed_client" version))
(sha256
(base32
"1vdwp1jjg27b22qxgm49v21nb8vm1iki3bfsm0fnq2rsz5alfwz2"))))
(version "2.8.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/JelleZijlstra/typeshed_client")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0i74ygf49184ab1ipfdzf706wnzs3id15rkysqarzcngdydrcszs"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-importlib-resources))
(native-inputs (list python-setuptools python-wheel))
(arguments
(list #:test-backend #~'custom
#:test-flags #~(list "tests/test.py")))
(native-inputs
(list python-setuptools))
(propagated-inputs
(list python-importlib-resources
python-typing-extensions))
(home-page "https://github.com/JelleZijlstra/typeshed_client")
(synopsis "Library for accessing stubs in typeshed")
(description