summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-15 14:33:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-15 14:34:10 +0100
commit4c88f358cecdb11cdeade27e25415fd2798ec20f (patch)
tree014dd12ac31fab54012056d55c74061ac1dc55c6 /gnu
parent5f6cbf433b9c166dd60d4b6f285ef086b6c14c47 (diff)
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
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm27
1 files changed, 18 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 8b34753e7b2..d04127e03b2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -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