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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchurl,
setuptools-scm,
git,
sphinx,
pytestCheckHook,
cython,
gcc,
graphviz,
}:
buildPythonPackage rec {
pname = "sphinx-automodapi";
version = "0.22.0";
pyproject = true;
src = fetchFromGitHub {
owner = "astropy";
repo = "sphinx-automodapi";
tag = "v${version}";
hash = "sha256-L+noKcyhT3wsbgdgyd29I9yCN81BlB8Fvfyl4fKioEw=";
leaveDotGit = true;
};
build-system = [ setuptools-scm ];
nativeBuildInputs = [ git ];
dependencies = [ sphinx ];
# https://github.com/astropy/sphinx-automodapi/issues/155
testInventory = fetchurl {
# Originally: https://docs.python.org/3/objects.inv
url = "https://web.archive.org/web/20221007193144/https://docs.python.org/3/objects.inv";
hash = "sha256-1cbUmdJJSoifkiIYa70SxnLsaK3F2gvnTEWo9vo/6rY=";
};
postPatch = ''
substituteInPlace sphinx_automodapi/tests/{helpers,test_cases}.py \
--replace ", None)" ", (None, '${testInventory}'))"
'';
nativeCheckInputs = [
pytestCheckHook
cython
gcc
graphviz
];
pythonImportsCheck = [ "sphinx_automodapi" ];
meta = {
description = "Sphinx extension for generating API documentation";
homepage = "https://github.com/astropy/sphinx-automodapi";
changelog = "https://github.com/astropy/sphinx-automodapi/releases/tag/${src.tag}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ lovesegfault ];
};
}
|