summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 15:10:05 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 17:56:58 +0100
commit4dce53f2d7d4eb4255febf009591c6043eea450c (patch)
treea5a92b91ab1ae661d537ce6850eacb7c3b636c74 /gnu/packages/python-web.scm
parent85b13a54d3354a9cb33d682d768d46361c408228 (diff)
gnu: python-giturlparse: Update to 0.12.0.
* gnu/packages/python-web.scm (python-giturlparse): Update to 0.12.0. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest, python-setuptools-next. [description]: Improve style. Change-Id: I70373b05412d02126497fa2372ef0c4264a5573e Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm23
1 files changed, 14 insertions, 9 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 22e89323993..f53f09733e9 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -9606,18 +9606,23 @@ over IMAP:
(define-public python-giturlparse
(package
(name "python-giturlparse")
- (version "0.10.0")
+ (version "0.12.0")
(source
- (origin
- (method url-fetch)
- (uri (pypi-uri "giturlparse" version))
- (sha256
- (base32 "0dxk7sqy8ibaqdl6jzxd0ac1p7shzp4p9f3lhkd7qw9h3llsp595"))))
- (build-system python-build-system)
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/nephila/giturlparse")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1fdbxp176p17sn5xc1418mz2vk00hlcsd5qmi2fdcfphqal6raan"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-setuptools-next))
(home-page "https://github.com/nephila/giturlparse")
(synopsis "Git URL parsing module")
- (description "This package provides a git URL parsing module which supports
-parsing and rewriting of remote git URLs from various hosting providers.")
+ (description
+ "This package provides a git URL parsing module which supports parsing
+and rewriting of remote git URLs from various hosting providers.")
(license license:asl2.0)))
(define-public python-hstspreload