Skip to content

Commit a4b4bab

Browse files
committed
python312Packages.sphinx-versions: init at 1.1.3
Signed-off-by: Ihar Hrachyshka <[email protected]>
1 parent c3baf31 commit a4b4bab

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
setuptools,
6+
wheel,
7+
click,
8+
colorclass,
9+
sphinx,
10+
}:
11+
12+
buildPythonPackage rec {
13+
pname = "sphinx-versions";
14+
version = "1.1.3";
15+
pyproject = true;
16+
17+
src = fetchPypi {
18+
inherit pname version;
19+
hash = "sha256-9ROFEjET+d2Dfg4DHx0IqUN34oGwY4AGbi7teK4YmR8=";
20+
};
21+
22+
build-system = [
23+
setuptools
24+
wheel
25+
];
26+
27+
dependencies = [
28+
click
29+
colorclass
30+
sphinx
31+
];
32+
33+
pythonImportsCheck = [
34+
"sphinxcontrib.versioning"
35+
];
36+
37+
meta = {
38+
description = "Sphinx extension that allows building versioned docs for self-hosting";
39+
homepage = "https://pypi.org/project/sphinx-versions/";
40+
license = lib.licenses.mit;
41+
maintainers = with lib.maintainers; [ booxter ];
42+
};
43+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15409,6 +15409,8 @@ self: super: with self; {
1540915409

1541015410
sphinx-togglebutton = callPackage ../development/python-modules/sphinx-togglebutton { };
1541115411

15412+
sphinx-versions = callPackage ../development/python-modules/sphinx-versions { };
15413+
1541215414
sphinxawesome-theme = callPackage ../development/python-modules/sphinxawesome-theme { };
1541315415

1541415416
sphinxcontrib-actdiag = callPackage ../development/python-modules/sphinxcontrib-actdiag { };

0 commit comments

Comments
 (0)