nixpkgs/pkgs/development/python-modules/python-docs-theme/default.nix
Martin Weinelt a93678c884 python3Packages.python-docs-theme: 2025.10 -> 2025.12
https://github.com/python/python-docs-theme/blob/2025.12/CHANGELOG.rst

This commit was automatically generated using update-python-libraries.
2026-02-01 17:20:08 +01:00

37 lines
822 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
pythonOlder,
sphinx,
}:
buildPythonPackage rec {
pname = "python-docs-theme";
version = "2025.12";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "python";
repo = "python-docs-theme";
tag = version;
hash = "sha256-isKfYgakIsPdMSATx9tjjb+U8oERN560NkBDkbt9AeM=";
};
build-system = [ flit-core ];
dependencies = [ sphinx ];
pythonImportsCheck = [ "python_docs_theme" ];
meta = {
description = "Sphinx theme for CPython project";
homepage = "https://github.com/python/python-docs-theme";
changelog = "https://github.com/python/python-docs-theme/blob/${src.tag}/CHANGELOG.rst";
license = lib.licenses.psfl;
maintainers = with lib.maintainers; [ kaction ];
};
}