blob: 0a92136a0b80ba483c1ca7f3d3fa683b5f32037e (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
click,
colorclass,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-versions";
version = "1.1.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-9ROFEjET+d2Dfg4DHx0IqUN34oGwY4AGbi7teK4YmR8=";
};
build-system = [
setuptools
wheel
];
dependencies = [
click
colorclass
sphinx
];
pythonImportsCheck = [
"sphinxcontrib.versioning"
];
meta = {
description = "Sphinx extension that allows building versioned docs for self-hosting";
homepage = "https://pypi.org/project/sphinx-versions/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ booxter ];
};
}
|