sharlatan pushed a commit to branch python-team
in repository guix.
commit 914a78c70bcb73a2e4cbdc4e8c6a9f79801e2195
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Nov 7 21:47:53 2024 +0000
gnu: python-robotframework-requests: Adjust inputs.
* gnu/packages/python-web.scm (python-robotframework-requests)
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I31009cea2eed419203df181c5db9f861c478813d
---
gnu/packages/python-web.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index aeebb3d46b..aac6243272 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -7655,10 +7655,13 @@ Agent is a web crawler. It uses the list of registered
robots from
(sha256
(base32 "077j8p5k41v53slyv8h32fcmqfi7m6z3r4gmyqqaawm5szfmy61m"))))
(build-system pyproject-build-system)
- (propagated-inputs
- (list python-requests python-robotframework))
(native-inputs
- (list python-pytest))
+ (list python-pytest
+ python-setuptools
+ python-wheel))
+ (propagated-inputs
+ (list python-requests
+ python-robotframework))
(home-page "https://github.com/MarketSquare/robotframework-requests")
(synopsis "Robot Framework keyword library wrapper around requests")
(description