Install this version:
emerge -a =dev-python/strawberry-graphql-django-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-python/strawberry-graphql-django-9999
Or alternatively:
emerge --autounmask-write -a =dev-python/strawberry-graphql-django-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{12..13} )
inherit distutils-r1 git-r3
DESCRIPTION="Strawberry GraphQL Django extension"
HOMEPAGE="https://github.com/strawberry-graphql/strawberry-django"
EGIT_REPO_URI="https://github.com/strawberry-graphql/${PN}.git"
LICENSE="MIT"
SLOT="0"
RDEPEND="dev-python/asgiref[${PYTHON_USEDEP}]
dev-python/cross-web[${PYTHON_USEDEP}]
dev-python/django[${PYTHON_USEDEP}]
dev-python/python-dateutil[${PYTHON_USEDEP}]
dev-python/django-debug-toolbar[${PYTHON_USEDEP}]
dev-python/django-model-utils[${PYTHON_USEDEP}]
dev-python/django-polymorphic[${PYTHON_USEDEP}]
dev-python/strawberry-graphql[${PYTHON_USEDEP}]"
BDEPEND="test? ( dev-db/spatialite
dev-python/django-choices-field[${PYTHON_USEDEP}]
dev-python/django-guardian[${PYTHON_USEDEP}]
dev-python/django-tree-queries[${PYTHON_USEDEP}]
dev-python/factory-boy[${PYTHON_USEDEP}]
dev-python/libcst[${PYTHON_USEDEP}]
dev-python/starlette[${PYTHON_USEDEP}]
dev-python/typer[${PYTHON_USEDEP}] )"
EPYTEST_PLUGINS=( inline-snapshot pytest-{asyncio,codspeed,django,emoji,mock,snapshot} )
distutils_enable_tests pytest
EPYTEST_IGNORE=(
# AssertionError
tests/polymorphism
tests/node_polymorphism
)
src_prepare() {
default
# remove coverage
sed -i '/addopts/d' pyproject.toml || die "sed failed"
}
dev-python/asgiref[] dev-python/cross-web[] dev-python/django[] dev-python/python-dateutil[] dev-python/django-debug-toolbar[] dev-python/django-model-utils[] dev-python/django-polymorphic[] dev-python/strawberry-graphql[]
test? ( dev-db/spatialite dev-python/django-choices-field[] dev-python/django-guardian[] dev-python/django-tree-queries[] dev-python/factory-boy[] dev-python/libcst[] dev-python/starlette[] dev-python/typer[] )