diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-12-23 05:43:43 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-12-23 06:12:31 +0100 |
commit | ffe50aba7e72ce68c3bc43089c04ebb4f620bb52 (patch) | |
tree | 1412b16103fd9ffb4cd6916b0b676040487d4faf /dev-python | |
parent | dev-python/importlib-metadata: Bump to 7.0.1 (diff) | |
download | gentoo-ffe50aba7e72ce68c3bc43089c04ebb4f620bb52.tar.gz gentoo-ffe50aba7e72ce68c3bc43089c04ebb4f620bb52.tar.bz2 gentoo-ffe50aba7e72ce68c3bc43089c04ebb4f620bb52.zip |
dev-python/klein: Bump to 23.12.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python')
-rw-r--r-- | dev-python/klein/Manifest | 1 | ||||
-rw-r--r-- | dev-python/klein/klein-23.12.0.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-python/klein/Manifest b/dev-python/klein/Manifest index f3d4c7ef9d5a..afa0fa115f6e 100644 --- a/dev-python/klein/Manifest +++ b/dev-python/klein/Manifest @@ -1 +1,2 @@ +DIST klein-23.12.0.tar.gz 103287 BLAKE2B ee6afe720a8cb68a28dd0dfc666de713c2188efbd92d31a669ac2db0c49afa3b61860bd2db216d0f846fb5d273105a18b8d443813c8e5d0e970ae9bece66e521 SHA512 2833d3b4ea53ccb62eccf72051b66867ca73c43dee0eb84aac9bd4ec4ba04b1b00acc5391863f0960eda2e5c329fc5b9537603997b9fa703750a3906febbbf72 DIST klein-23.5.0.tar.gz 100691 BLAKE2B 913f48d975ef94787da910f217e687046e6d60273aac455eecae89378742cb7533ff5ab0a8ad868d5b363f27af1d0ee68f3b17a16b51482b5e4c015e7a779b53 SHA512 10d7bb1a5aabc035aa69a0f9c25516ee9b6043f442b35b31f5687c249370e4674c4488a9531ff4bc06ea40574fd9a7974343899de3d5b3895f28a2feb70ae543 diff --git a/dev-python/klein/klein-23.12.0.ebuild b/dev-python/klein/klein-23.12.0.ebuild new file mode 100644 index 000000000000..4a97f15113d3 --- /dev/null +++ b/dev-python/klein/klein-23.12.0.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{10..12} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Micro-framework for developing production-ready web services with Python" +HOMEPAGE=" + https://pypi.org/project/klein/ + https://github.com/twisted/klein/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~riscv" + +RDEPEND=" + >=dev-python/attrs-20.1.0[${PYTHON_USEDEP}] + dev-python/hyperlink[${PYTHON_USEDEP}] + dev-python/incremental[${PYTHON_USEDEP}] + dev-python/tubes[${PYTHON_USEDEP}] + >=dev-python/twisted-16.6[${PYTHON_USEDEP}] + dev-python/werkzeug[${PYTHON_USEDEP}] + dev-python/zope-interface[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + dev-python/treq[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +python_test() { + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + epytest +} |