diff options
| author | Attila Lendvai <attila@lendvai.name> | 2024-11-24 12:28:19 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-24 14:42:53 +0000 |
| commit | e30c169becc202e0baff6898df1cdaa1b0beb14e (patch) | |
| tree | 826d9ec82aaf42a6b9db53cae68d174de312d1bd /gnu/packages/python-web.scm | |
| parent | 851f0662a5e7e65619564066f0995688e7ef9829 (diff) | |
gnu: python-pycurl: Build from git.
* gnu/packages/python-web.scm (python-pycurl) [source]: Swap to git
checkout.
Change-Id: I1b347c04022970ffe42a87530e525a83745ff84c
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
| -rw-r--r-- | gnu/packages/python-web.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9bd6d10ef03..9064f462888 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2020,10 +2020,15 @@ Amazon S3 compatible object storage server.") (version "7.45.2") (source (origin - (method url-fetch) - (uri (pypi-uri "pycurl" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/pycurl/pycurl") + (commit (string-append + "REL_" (string-replace-substring version "." "_"))))) + (file-name (git-file-name name version)) (sha256 - (base32 "1ji46b924caa4saxvjxs9h673yy0kif297nxpnjn84r7w05mjc2p")))) + (base32 + "1dzdramcgf63m1zg8glhqa3ik9anzjy954mshk7s3z3gsi21n8fp")))) (build-system pyproject-build-system) (arguments '(#:test-flags |
