summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-docs-theme
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-11-04 10:48:39 +0100
committerGitHub <noreply@github.com>2023-11-04 10:48:39 +0100
commit99102ce18531832aa54223be7a09023c09c8cf95 (patch)
treebf2ecc014121130fc702fdbd1080e9495b368f10 /pkgs/development/python-modules/python-docs-theme
parent5dfa3bc7003fbedb6ac2c3a262242d995c0f8296 (diff)
python311Packages.python-docs-theme: disable on unsupported Python releases
Diffstat (limited to 'pkgs/development/python-modules/python-docs-theme')
-rw-r--r--pkgs/development/python-modules/python-docs-theme/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-docs-theme/default.nix b/pkgs/development/python-modules/python-docs-theme/default.nix
index 86b858ecd30a..464697c35bfa 100644
--- a/pkgs/development/python-modules/python-docs-theme/default.nix
+++ b/pkgs/development/python-modules/python-docs-theme/default.nix
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchFromGitHub
, flit-core
+, pythonOlder
, sphinx
}:
@@ -10,6 +11,8 @@ buildPythonPackage rec {
version = "2023.9";
pyproject = true;
+ disabled = pythonOlder "3.8";
+
src = fetchFromGitHub {
owner = "python";
repo = "python-docs-theme";