diff options
author | Vinicius Monego <monego@posteo.net> | 2020-09-16 16:57:06 -0300 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-09-18 11:47:01 +0200 |
commit | 7802875abc2cdefae89bf67b7701988efb7936be (patch) | |
tree | 56fdbb6d225d4233e0bc1983cb1b0fc965dcb71d /gnu/packages | |
parent | e1e577e088b36438887410d931fc128ef80f34a4 (diff) | |
download | guix-7802875abc2cdefae89bf67b7701988efb7936be.tar.gz guix-7802875abc2cdefae89bf67b7701988efb7936be.zip |
gnu: Add python-beren.
* gnu/packages/python-web.scm (python-beren): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/python-web.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 27000c9fda..b5d4a62c7d 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -1913,6 +1913,28 @@ services and endpoints with a unified interface for interacting with RESTful APIs.") (license license:expat))) +(define-public python-beren + (package + (name "python-beren") + (version "0.7.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "beren" version)) + (sha256 + (base32 "1v3mdwfqsyza892zvs124ym9w1bkng1j56b7l4dwfjir3723xcgf")))) + (build-system python-build-system) + (arguments + ;; The test tries to open a connection to a remote server. + `(#:tests? #f)) + (propagated-inputs + `(("python-apiron" ,python-apiron))) + (home-page "https://github.com/teffalump/beren") + (synopsis "REST client for Orthanc DICOM servers") + (description + "@code{beren} provides a REST client for Orthanc, a DICOM server.") + (license license:gpl3+))) + (define-public python-requests (package (name "python-requests") |