summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r--eclass/distutils-r1.eclass9
1 files changed, 9 insertions, 0 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
index 02d8bf547cba..de891215e688 100644
--- a/eclass/distutils-r1.eclass
+++ b/eclass/distutils-r1.eclass
@@ -100,6 +100,8 @@ esac
#
# - hatchling - hatchling backend (from hatch)
#
+# - jupyter - jupyter_packaging backend
+#
# - pdm - pdm.pep517 backend
#
# - poetry - poetry-core backend
@@ -200,6 +202,10 @@ _distutils_set_globals() {
bdep+='
dev-python/hatchling[${PYTHON_USEDEP}]'
;;
+ jupyter)
+ bdep+='
+ dev-python/jupyter_packaging[${PYTHON_USEDEP}]'
+ ;;
pdm)
bdep+='
dev-python/pdm-pep517[${PYTHON_USEDEP}]'
@@ -927,6 +933,9 @@ _distutils-r1_backend_to_key() {
hatchling.build)
echo hatchling
;;
+ jupyter_packaging.build_api)
+ echo jupyter
+ ;;
pdm.pep517.api)
echo pdm
;;