summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-08-25 09:29:40 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-02 21:04:35 +0100
commit6df869cd974e25cf6a25216288a54b474221e01c (patch)
tree3ff1d483cefdaed28da9f4122acc91e69d76c3ac /gnu/packages/python-web.scm
parent83f234a549a460caa4aece3378aa9258cd428167 (diff)
gnu: python-google-crc32c: Switch to pyproject.
* gnu/packages/python-web.scm (python-google-crc32c): [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. Change-Id: I96f9d00b17d92568603074d92afde7824bc92e11 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm13
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 25997014ad4..3cbef973f6d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -10084,12 +10084,15 @@ Client Library for Python.")
(version "1.3.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "google-crc32c" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/googleapis/python-crc32c")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1ps4qaccij6cixs91772y9f9r1n702yfzy4qqmds6x5h7qkycv97"))))
- (build-system python-build-system)
- (native-inputs (list python-pytest))
+ (base32 "005ra4pfv71rq53198k7q6k63f529q3g6hkbxbwfcf82jr77hxga"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools python-wheel))
(home-page "https://github.com/googleapis/python-crc32c")
(synopsis "Python wrapper of Google CRC32C")
(description