diff options
| author | Alfredo Tupone <tupone@gentoo.org> | 2024-12-20 22:15:08 +0100 |
|---|---|---|
| committer | Alfredo Tupone <tupone@gentoo.org> | 2024-12-20 22:15:08 +0100 |
| commit | 652a4c91ed076f240d3f86e61f1c01148eb56065 (patch) | |
| tree | b190d553872b74ac2bb5d035e0a253773dcb7283 /dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild | |
| parent | 93e3a35328c21e2569d5508c13d9107068a0b1e6 (diff) | |
| download | gentoo-652a4c91ed076f240d3f86e61f1c01148eb56065.tar.gz gentoo-652a4c91ed076f240d3f86e61f1c01148eb56065.tar.bz2 gentoo-652a4c91ed076f240d3f86e61f1c01148eb56065.zip | |
dev-python/django-debug-toolbar: fix deps for musl
Closes: https://bugs.gentoo.org/906701
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild')
| -rw-r--r-- | dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild b/dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild new file mode 100644 index 000000000000..5d4f0cac811b --- /dev/null +++ b/dev-python/django-debug-toolbar/django-debug-toolbar-4.4.6-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 2023-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=hatchling +PYTHON_COMPAT=( python3_{10..13} ) + +inherit distutils-r1 pypi + +DESCRIPTION="A configurable set of panels that display various debug information" +HOMEPAGE=" + https://github.com/jazzband/django-debug-toolbar/ + https://pypi.org/project/django-debug-toolbar/ +" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=dev-python/django-4.2.9[${PYTHON_USEDEP}] + elibc_musl? ( sys-libs/timezone-data ) +" + +BDEPEND=" + test? ( + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" + +python_test() { + "${EPYTHON}" -m django test -v 2 --settings tests.settings tests \ + || die "Tests failed with ${EPYTHON}" +} |
