diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-07-23 10:11:29 +0200 |
commit | 4c204d01d57ac7da11a5772d5d4e3254d1c2408f (patch) | |
tree | c7e5cb013abc742734acd9613674df4ebddfdeef /gnu/packages/python-web.scm | |
parent | 82bdb77082fa4e100761f70086b745dfb280c3ac (diff) | |
parent | 445a0359083388b5ee686e6e855f94a3aac5f79c (diff) |
Merge branch 'master' into gnome-team
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 61a21f9c94..6f855a503b 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -778,6 +778,34 @@ Model} (SAM) templates into AWS CloudFormation templates.") emit information from within their applications to the AWS X-Ray service.") (license license:asl2.0))) +(define-public python-ovh + (package + (name "python-ovh") + (version "1.1.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "ovh" version)) + (sha256 + (base32 + "0ygniv12lixh9rvnjcd01gzbzk2b5xwcg2a59b7964a77dd9p3qh")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; XXX: tests require networking + (propagated-inputs (list python-requests)) + (native-inputs (list python-black + python-coverage + python-flake8 + python-isort + python-pytest + python-pytest-cov + python-setuptools + python-sphinx + python-wheel)) + (home-page "https://api.ovh.com") + (synopsis "Interact with OVHcloud APIs") + (description "This package provides the official module to perform HTTP requests +to the OVHcloud APIs.") + (license license:bsd-3))) + (define-public python-cbor2 (package (name "python-cbor2") |