diff options
| author | Michał Górny <mgorny@gentoo.org> | 2021-04-06 22:49:21 +0200 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2021-04-06 23:26:44 +0200 |
| commit | 47372dd155d449bb098612ea3456cb79564a3243 (patch) | |
| tree | 545bc00fdcbadc4cbdb79df64752c49c4b3b5cbd /dev-python/hcloud-python/hcloud-python-1.12.0.ebuild | |
| parent | acb300f9dca829ec356bb265aa05c1d7ee5651ca (diff) | |
| download | gentoo-47372dd155d449bb098612ea3456cb79564a3243.tar.gz gentoo-47372dd155d449bb098612ea3456cb79564a3243.tar.bz2 gentoo-47372dd155d449bb098612ea3456cb79564a3243.zip | |
dev-python/hcloud-python: Bump to 1.12.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/hcloud-python/hcloud-python-1.12.0.ebuild')
| -rw-r--r-- | dev-python/hcloud-python/hcloud-python-1.12.0.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-python/hcloud-python/hcloud-python-1.12.0.ebuild b/dev-python/hcloud-python/hcloud-python-1.12.0.ebuild new file mode 100644 index 000000000000..af7341e93d4d --- /dev/null +++ b/dev-python/hcloud-python/hcloud-python-1.12.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{7..9} ) + +inherit distutils-r1 + +DESCRIPTION="Official Hetzner Cloud python library" +HOMEPAGE="https://github.com/hetznercloud/hcloud-python" +SRC_URI="https://github.com/hetznercloud/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc examples" + +RDEPEND=" + >=dev-python/future-0.17.1[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.7.5[${PYTHON_USEDEP}] + >=dev-python/requests-2.20[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/mock[${PYTHON_USEDEP}] + )" + +distutils_enable_sphinx docs \ + dev-python/sphinx_rtd_theme +distutils_enable_tests pytest + +python_install_all() { + use examples && dodoc -r examples + distutils-r1_python_install_all +} + +python_test() { + # Integration tests need docker: + # https://github.com/hetznercloud/hcloud-python/blob/master/.travis.yml#L16 + epytest --ignore tests/integration +} |
