mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-robotframework-requests.
* gnu/packages/python-web.scm (python-robotframework-requests): New variable. Change-Id: I01d814d1a9e20d26e9bfa4a0a77ba91577da2bd8 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
db8626124b
commit
22d11dab8b
1 changed files with 27 additions and 0 deletions
|
@ -64,6 +64,7 @@
|
|||
;;; Copyright © 2024 Troy Figiel <troy@troyfigiel.com>
|
||||
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2024 normally_js <normally_js@posteo.net>
|
||||
;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -7176,6 +7177,32 @@ (define-public python-robot-detection
|
|||
@url{http://www.robotstxt.org}.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public python-robotframework-requests
|
||||
(package
|
||||
(name "python-robotframework-requests")
|
||||
(version "0.9.7")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch) ; no tests in PyPI release
|
||||
(uri (git-reference
|
||||
(url "https://github.com/MarketSquare/robotframework-requests")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "077j8p5k41v53slyv8h32fcmqfi7m6z3r4gmyqqaawm5szfmy61m"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs
|
||||
(list python-requests python-robotframework))
|
||||
(native-inputs
|
||||
(list python-pytest))
|
||||
(home-page "https://github.com/MarketSquare/robotframework-requests")
|
||||
(synopsis "Robot Framework keyword library wrapper around requests")
|
||||
(description
|
||||
"@code{RequestsLibrary} is a @url{https://robotframework.org/, Robot
|
||||
Framework} library aimed to provide HTTP API testing functionalities by
|
||||
wrapping the @code{requests} Python library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pysolr
|
||||
(package
|
||||
(name "python-pysolr")
|
||||
|
|
Loading…
Reference in a new issue