summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-09-06 14:10:05 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-06 17:52:17 +0100
commiteb35eee5407f5af66ec2ac6128f3a5f7286c7212 (patch)
treee1a7ede16364769f018968c4f061b2d600ba3e87 /gnu/packages/python-web.scm
parent27e5b6c6010f371a7b23775bb99eae8b2915de8c (diff)
gnu: httpie: Switch to pyproject.
* gnu/packages/python-web.scm (httpie): [build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-setuptools, python-wheel. [source, properties]: Improve style. Change-Id: Ib6073b02235f19a70576c0e37193dcb05496d3eb Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index d2cc3369975..20a0ee23f2d 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2585,12 +2585,12 @@ other HTTP libraries.")
(method url-fetch)
(uri (pypi-uri "httpie" version))
(sha256
- (base32
- "140w4mr0w7scpf4j5qm4h475vbwrgxzkdwyygwcmql1r1cgngywb"))))
- (build-system python-build-system)
+ (base32 "140w4mr0w7scpf4j5qm4h475vbwrgxzkdwyygwcmql1r1cgngywb"))))
+ (build-system pyproject-build-system)
(arguments
;; The tests attempt to access external web servers, so we cannot run them.
'(#:tests? #f))
+ (native-inputs (list python-setuptools python-wheel))
(propagated-inputs
(list python-charset-normalizer
python-colorama
@@ -2611,7 +2611,7 @@ syntax highlighting, wget-like downloads, plugins, and more. It consists of
a single http command designed for painless debugging and interaction with
HTTP servers, RESTful APIs, and web services.")
;; This was fixed in 1.0.3.
- (properties `((lint-hidden-cve . ("CVE-2019-10751"))))
+ (properties `((lint-hidden-cve "CVE-2019-10751")))
(license license:bsd-3)))
(define-public python-parfive