Package Details: python-ovh 1.1.0-1

Git Clone URL: https://aur.archlinux.org/python-ovh.git (read-only, click to copy)
Package Base: python-ovh
Description: Lightweight wrapper around OVH's APIs
Upstream URL: https://github.com/ovh/python-ovh
Keywords: python
Licenses: BSD
Submitter: ebiadsu
Maintainer: Samuelfaure
Last Packager: mhdi
Votes: 3
Popularity: 0.87
First Submitted: 2017-08-21 15:51 (UTC)
Last Updated: 2023-11-07 16:54 (UTC)

Pinned Comments

Samuelfaure commented on 2024-04-18 03:56 (UTC) (edited on 2024-04-18 03:57 (UTC) by Samuelfaure)

I'm adopting this package, because it's been orphan for too long and I need it. I have little experience on this topic so I will follow comments closely.

Latest Comments

Samuelfaure commented on 2024-04-18 03:56 (UTC) (edited on 2024-04-18 03:57 (UTC) by Samuelfaure)

I'm adopting this package, because it's been orphan for too long and I need it. I have little experience on this topic so I will follow comments closely.

gbabin commented on 2022-04-30 11:13 (UTC)

On first install, doc generation fails because ovh module is not yet installed (this also means that doc corresponds to previous version when updating).

Many messages like those are printed:

WARNING: autodoc: failed to import module 'client' from module 'ovh'; the following exception was raised:
No module named 'ovh'

ebiadsu commented on 2020-10-18 12:33 (UTC)

I am disowning this package, as I have not been using OVH for quiet some while. The upstream package also does not look very well maintained.

ebiadsu commented on 2019-11-21 17:34 (UTC)

@ache Can you provide an example to show what does not work?

ache commented on 2019-11-21 06:08 (UTC)

Doesn't work with python3.8 @home ^^

It installed itself in python3.7 but i dont' understand why.

quartic commented on 2018-04-08 19:40 (UTC)

Now it is installing fine. Thanks!

ebiadsu commented on 2018-04-08 18:53 (UTC)

@quartic

I don't remember why I used pip. Possible because there was a script like pip2pkgbuild.

I have updated the package accordingly using setuptools. Please check.

quartic commented on 2018-04-08 12:22 (UTC)

This package does not build (makepkg complains about missing LICENSE file).

Why do you use pip instead of the more standard way of packaging python packages with setuptools?

pkgname=python-ovh
pkgver=0.4.8
pkgrel=2
pkgdesc="Official OVH.com API wrapper"
arch=('any')
url="<https://api.ovh.com/>"
license=('custom')
depends=('python')
makedepends=('python-setuptools')
source=("<https://github.com/ovh/python-ovh/archive/v>${pkgver}.tar.gz")
sha256sums=('37493a24271f17fdda1693c414170eb948cc945b8cb9105878989d2948d8ccae')

package() {
    cd "${pkgname}-${pkgver}"
    python setup.py install --root="${pkgdir}/" --optimize=1
    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}