summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-11 22:41:12 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-11 22:42:56 +0100
commit72a1240c84138f6e59155cf179e5becb761dc111 (patch)
tree197bb553a7d29130f5da9c3b827a00141e7f51ae /gnu/packages/python-web.scm
parent672c348cf078d79cc856fb756ee8c2b6696163d8 (diff)
gnu: python-requests-unixsocket2: Update to 1.0.1.
* gnu/packages/python-web.scm (python-requests-unixsocket2): Update to 1.0.1. [propagated-inputs]: Remove python-pbr and python-requests; add python-requests-next and python-urllib3-next. [native-inputs]: Remove python-poetry-core; add nss-certs-for-test and python-hatchling. Change-Id: I52740b3663ca3374441ad17402eae7385798ccaf
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm12
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index debc996ac0a..4f05adde741 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5277,7 +5277,7 @@ python-requests.")
(define-public python-requests-unixsocket2
(package
(name "python-requests-unixsocket2")
- (version "0.4.2")
+ (version "1.0.1")
(source
(origin
(method git-fetch)
@@ -5285,12 +5285,16 @@ python-requests.")
(url "https://gitlab.com/thelabnyc/requests-unixsocket2")
(commit (string-append "v" version))))
(sha256
- (base32 "0vy0c1xwwmm6xqabhl2j7zqgsldvcs8ar547nk5r9l2yb7gngzjk"))))
+ (base32 "0wb8ckagal9d6lfyl3pf9m45xn1krq6vg8kzciwv12chq9wwh0ra"))))
(build-system pyproject-build-system)
(native-inputs
- (list python-poetry-core python-pytest python-waitress))
+ (list nss-certs-for-test
+ python-hatchling
+ python-pytest
+ python-waitress))
(propagated-inputs
- (list python-pbr python-requests))
+ (list python-requests-next
+ python-urllib3-next))
(home-page "https://gitlab.com/thelabnyc/requests-unixsocket2")
(synopsis "Talk HTTP via a UNIX domain socket")
(description