{ lib, buildPythonPackage, fetchFromGitHub, sphinx }: buildPythonPackage rec { pname = "python_docs_theme"; version = "2023.7"; format = "flit"; src = fetchFromGitHub { owner = "python"; repo = "python-docs-theme"; rev = "refs/tags/${version}"; sha256 = "sha256-43/TlgYm7Q4ZtY25MiLU9fd1atDmiDUeUK6AYfDfmag="; }; propagatedBuildInputs = [ sphinx ]; pythonImportsCheck = [ "python_docs_theme" ]; meta = with lib; { homepage = "https://github.com/python/python-docs-theme"; description = "Sphinx theme for CPython project"; license = licenses.psfl; maintainers = with maintainers; [ kaction ]; }; }