summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:59:51 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:33 +0100
commit48ff1e330324ae4265c2fc2c0178ae9c2444d2bb (patch)
tree4779f9ca8653d87d54e3114445e57edc7baeed5a /gnu/packages/python-web.scm
parentc7fec22b91877ee339462780a644330898bddcaf (diff)
gnu: Add python-requests-futures.
* gnu/packages/python-web.scm (python-requests-futures): New variable. Change-Id: Ibaa9299001567bcfe65247fd192bb64076f80dda
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 4c4437cf7c0..b1f419360c8 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2311,6 +2311,33 @@ responses as planin JSON/YAML file or save responses as plain JSON/YAML
files.")
(license license:bsd-2)))
+(define-public python-requests-futures
+ (package
+ (name "python-requests-futures")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "requests_futures" version))
+ (sha256
+ (base32 "1njqfjmd72l5f32jvcppg2afrvb0cd8angdwmq7q0vik81wvazkb"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-greenlet
+ python-pytest
+ python-pytest-httpbin
+ python-readme-renderer
+ python-setuptools
+ python-twine
+ python-werkzeug))
+ (propagated-inputs (list python-requests))
+ (home-page "https://github.com/ross/requests-futures")
+ (synopsis "Asynchronous Python HTTP for Humans")
+ (description
+ "This package provides and add-on the Python Requests HTTP library to run
+code asynchronously.")
+ (license license:asl2.0)))
+
(define-public python-s3path
(package
(name "python-s3path")