blob: 6cc5d9e15b3953ce122f43a1815a66009c123005 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
(define-module (gn packages globus)
#:use-module (gnu packages check)
#:use-module (gnu packages python-build)
#:use-module (gnu packages python-crypto)
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (guix build-system pyproject)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages))
(define-public python-globus-sdk
(package
(name "python-globus-sdk")
(version "3.37.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "globus-sdk" version))
(sha256
(base32
"19w3pjzfycaqvvr11nq8c91i6pkkkic95yf170hr39dwj70lrkc7"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-cryptography python-pyjwt python-requests
python-typing-extensions))
(home-page "https://github.com/globus/globus-sdk-python")
(synopsis "Globus SDK for Python")
(description "@code{python-globus-sdk} provides a convenient Pythonic interface to
Globus APIs.")
(license license:asl2.0)))
(define-public python-click-type-test
(package
(name "python-click-type-test")
(version "0.0.7")
(source (origin
(method url-fetch)
(uri (pypi-uri "click-type-test" version))
(sha256
(base32
"1i3z7akiz7s8jy6x0vzrak88m55ac1spq88vziwryzr7355y3hgq"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest))
(propagated-inputs (list python-click))
(home-page "https://github.com/sirosen/click-type-test")
(synopsis "Test that type annotations match click parameter types")
(description "@code{python-click-type-test} allows you to test that your click
options and arguments match your type annotations.")
(license license:expat)))
(define-public globus-cli
(package
(name "globus-cli")
(version "3.25.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "globus-cli" version))
(sha256
(base32
"05div2psajmqdy9md804q4x6ha4yfp4w6yrxz0ynsq3i62a6cl5v"))))
(build-system pyproject-build-system)
(arguments
(list #:tests? #f))
(propagated-inputs
(list python-click
python-cryptography
python-globus-sdk
python-jmespath
python-packaging
python-requests
python-typing-extensions))
(home-page "https://docs.globus.org/cli")
(synopsis "Globus CLI")
(description "@code{globus-cli} provides a command-line interface to
Globus APIs.")
(license license:asl2.0)))
|