summaryrefslogtreecommitdiff
path: root/dev-python
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python')
-rw-r--r--dev-python/humanize/Manifest1
-rw-r--r--dev-python/humanize/humanize-4.12.2.ebuild33
2 files changed, 34 insertions, 0 deletions
diff --git a/dev-python/humanize/Manifest b/dev-python/humanize/Manifest
index db96fdcb034f..359ad8bbfc5c 100644
--- a/dev-python/humanize/Manifest
+++ b/dev-python/humanize/Manifest
@@ -1 +1,2 @@
DIST humanize-4.12.1.tar.gz 80827 BLAKE2B db2c65c74eaa0d7c201b7cc620417c5ce4d95cafcfac94160bf7e8b61f787e26dae346616bc2117275622e14c43720f6ac55e759dc711a35452352b19efa78e9 SHA512 373f9fde324924089019934e712aab94dc50b72da9b2932461dec6700a01a49a132693a29a37f6a65fe60636c9b300aab8053a21afe3f496b3f24dd10ada7fe7
+DIST humanize-4.12.2.tar.gz 80871 BLAKE2B 77af866cc388566c8930a7869a836458517babd3f804505681f5bd51adb1690746cfd1e251d71a7b1d9408ae8a51218fe59e94bca9ee2c2d209a0f54db1e37be SHA512 33b7c54acf0aa6e4170016baf8c0b512533546551f6b64bccca251d59a9a997e5f4379b1e038401d6fbff4aaec99606afb24df0428202dd8d82ff7b9595463b7
diff --git a/dev-python/humanize/humanize-4.12.2.ebuild b/dev-python/humanize/humanize-4.12.2.ebuild
new file mode 100644
index 000000000000..2c197cb2cb95
--- /dev/null
+++ b/dev-python/humanize/humanize-4.12.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Common humanization utilities"
+HOMEPAGE="
+ https://github.com/python-humanize/humanize/
+ https://pypi.org/project/humanize/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+BDEPEND="
+ dev-python/hatch-vcs[${PYTHON_USEDEP}]
+ test? (
+ dev-python/freezegun[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ sed -e '/coverage/d' -i pyproject.toml || die
+ distutils-r1_src_prepare
+}