mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add python-globus-sdk.
* gnu/packages/python-web.scm (python-globus-sdk): New variable. Change-Id: Idb8ce6d9bc96ba30615e6de9a3b5612489ab47a8 Signed-off-by: Artyom V. Poptsov <poptsov.artyom@gmail.com>
This commit is contained in:
parent
97bc162f28
commit
b0e6bfc822
1 changed files with 42 additions and 0 deletions
|
@ -552,6 +552,48 @@ The event dispatch is implicit, which means you can easily use @code{Eventlet}
|
||||||
from the Python interpreter, or as a small part of a larger application.")
|
from the Python interpreter, or as a small part of a larger application.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-globus-sdk
|
||||||
|
(package
|
||||||
|
(name "python-globus-sdk")
|
||||||
|
(version "3.56.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch) ;no tests in PyPI archive
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/globus/globus-sdk-python")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "11nljda2ir4gna4xa5vkj5nzxnjwadkh97qplkk9nrj44szphnzw"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:test-flags
|
||||||
|
#~(list "--numprocesses" (number->string (min 8 (parallel-job-count))))
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _ (setenv "HOME" "/tmp"))))))
|
||||||
|
(native-inputs
|
||||||
|
(list python-flaky
|
||||||
|
python-pytest
|
||||||
|
python-pytest-randomly
|
||||||
|
python-pytest-xdist
|
||||||
|
python-responses
|
||||||
|
python-setuptools
|
||||||
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-cryptography
|
||||||
|
python-importlib-resources
|
||||||
|
python-pyjwt
|
||||||
|
python-requests))
|
||||||
|
(home-page "https://github.com/globus/globus-sdk-python")
|
||||||
|
(synopsis "Globus SDK for Python")
|
||||||
|
(description
|
||||||
|
"This package provides a SDK for convenient Pythonic interface to
|
||||||
|
@url{https://www.globus.org/, Globus} APIs.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public python-hookdns
|
(define-public python-hookdns
|
||||||
(package
|
(package
|
||||||
(name "python-hookdns")
|
(name "python-hookdns")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue