about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python_docs_theme/default.nix
blob: 90cf78e4d69b1f187a0aa4f3128e34ed6714a858 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildPythonPackage, fetchFromGitHub, flit-core, sphinx }:

buildPythonPackage rec {
  pname = "python_docs_theme";
  version = "2023.7";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "python";
    repo = "python-docs-theme";
    rev = "refs/tags/${version}";
    sha256 = "sha256-43/TlgYm7Q4ZtY25MiLU9fd1atDmiDUeUK6AYfDfmag=";
  };

  nativeBuildInputs = [ flit-core ];

  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 ];
  };
}