diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2023-11-04 10:48:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-04 10:48:39 +0100 |
| commit | 99102ce18531832aa54223be7a09023c09c8cf95 (patch) | |
| tree | bf2ecc014121130fc702fdbd1080e9495b368f10 /pkgs/development/python-modules/python-docs-theme | |
| parent | 5dfa3bc7003fbedb6ac2c3a262242d995c0f8296 (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.nix | 3 |
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"; |
