diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-22 01:00:55 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-12-27 21:42:21 +0000 |
| commit | ff65305ea7841eeb773bc07e018843ac692c536c (patch) | |
| tree | 683f6adf609a2706910dea10a300fbfa0c88a02f /gnu | |
| parent | 2aae63601d9f1606c7f01b56fb13a47657363654 (diff) | |
gnu: python-grpc-stubs: Update to 1.53.0.6.
* gnu/packages/rpc.scm (python-grpc-stubs): Update to 1.53.0.6.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/rpc.scm | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/gnu/packages/rpc.scm b/gnu/packages/rpc.scm index 1e5ba338dff..ccad511a2de 100644 --- a/gnu/packages/rpc.scm +++ b/gnu/packages/rpc.scm @@ -38,6 +38,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages bison) #:use-module (gnu packages boost) + #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages cpp) #:use-module (gnu packages flex) @@ -145,14 +146,19 @@ browsers to backend services.") (define-public python-grpc-stubs (package (name "python-grpc-stubs") - (version "1.24.11") - (source (origin - (method url-fetch) - (uri (pypi-uri "grpc-stubs" version)) - (sha256 - (base32 - "19dkm365g38lvxm799d29dnzg60g8in8251c18qkvsv4n92h8axh")))) - (build-system python-build-system) + (version "1.53.0.6") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/shabbyrobe/grpc-stubs") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0k2h787dk411sprdmx71kpwjpghmgfv0jyl84irl6s5szmqhy2y3")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;No tests. + (native-inputs (list python-setuptools)) (propagated-inputs (list python-grpcio python-typing-extensions)) (home-page "https://github.com/shabbyrobe/grpc-stubs") (synopsis "Typing stubs for Python") |
