diff options
Diffstat (limited to 'dev-python/picobox')
-rw-r--r-- | dev-python/picobox/Manifest | 1 | ||||
-rw-r--r-- | dev-python/picobox/picobox-3.0.0.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/picobox/Manifest b/dev-python/picobox/Manifest index b99d37fb1e9c..6fca50562b08 100644 --- a/dev-python/picobox/Manifest +++ b/dev-python/picobox/Manifest @@ -1 +1,2 @@ DIST picobox-2.2.0.tar.gz 30231 BLAKE2B 9911e2e41a850b57d4a642aa454e55703e0546bdb3a5b95aa4a15747388413babaec7dc3a3f7fcb7ecae7ecd0f81dc203161975ca393f87353987825e0413355 SHA512 d127ea71637105285701ae5252e59e0c940077fbbe044ba1f42f80134ea08291344ebb6bc8bce240112a7efe0be8561c8040b43d20912f1fbd121098578a1795 +DIST picobox-3.0.0.tar.gz 28599 BLAKE2B e29dd7b0b5b23175a21f8fe6efe83adc6edfb0302c7a27f92f518deeba8f74f8e2d481a8eef6a1363fa0fb02ffc00b462181bab09872f6da5c1c9063c4d274e6 SHA512 ac8cecba10527e7dc096eb66f3b6743b523c305bd9725d5be8ec2822857a65ef8e9cc0ddcb85b8c656c557e7dc6cf0903035753bf8fe8cc2616b463e0a82bb5d diff --git a/dev-python/picobox/picobox-3.0.0.ebuild b/dev-python/picobox/picobox-3.0.0.ebuild new file mode 100644 index 000000000000..cfe660631bd3 --- /dev/null +++ b/dev-python/picobox/picobox-3.0.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{9..11} ) + +inherit distutils-r1 pypi + +DESCRIPTION="Dependency injection framework designed with Python in mind" +HOMEPAGE=" + https://github.com/ikalnytskyi/picobox/ + https://pypi.org/project/picobox/ +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" + +BDEPEND=" + dev-python/hatch-vcs[${PYTHON_USEDEP}] + test? ( + dev-python/flask[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest |