blob: 47f0d43187b07b95844d4aa029c73e423c50c597 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
{
lib,
buildPythonPackage,
fetchPypi,
# build-system
setuptools,
# dependencies
jinja2,
sphinx,
tabulate,
# tests
matplotlib,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "numpydoc";
version = "1.9.0";
pyproject = true;
src = fetchPypi {
inherit pname;
inherit version;
hash = "sha256-X+xkkI/gQazEs6/CoyxJqrFUDPWBh29VY9aLsSnifFs=";
};
build-system = [ setuptools ];
dependencies = [
jinja2
sphinx
tabulate
];
nativeCheckInputs = [
matplotlib
pytest-cov-stub
pytestCheckHook
];
disabledTests = [
# https://github.com/numpy/numpydoc/issues/373
"test_MyClass"
"test_my_function"
# AttributeError: 'MockApp' object has no attribute '_exception_on_warning'
"test_mangle_docstring_validation_exclude"
"test_mangle_docstring_validation_warnings"
"test_mangle_docstrings_overrides"
# AttributeError: 'MockBuilder' object has no attribute '_translator'
"test_mangle_docstrings_basic"
"test_mangle_docstrings_inherited_class_members"
];
pythonImportsCheck = [ "numpydoc" ];
meta = {
changelog = "https://github.com/numpy/numpydoc/releases/tag/v${version}";
description = "Sphinx extension to support docstrings in Numpy format";
mainProgram = "validate-docstrings";
homepage = "https://github.com/numpy/numpydoc";
license = lib.licenses.free;
};
}
|