me
/
guix
Archived
1
0
Fork 0

gnu: Add python-ovh.

* gnu/packages/python-web.scm (python-ovh): New variable.
master
Liliana Marie Prikler 2023-07-09 15:58:51 +02:00
parent d08bd19de0
commit cb46336c40
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 28 additions and 0 deletions

View File

@ -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")