blob: d651c5f4fd017c6d4d2dfa68095b88de513f59e3 (
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
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,
fetchPypi,
isPy27,
setuptools,
jinja2,
sphinx,
tabulate,
pytestCheckHook,
matplotlib,
}:
buildPythonPackage rec {
pname = "numpydoc";
version = "1.8.0";
pyproject = true;
disabled = isPy27;
src = fetchPypi {
inherit pname;
inherit version;
hash = "sha256-AiOQq3RkpE+HN/efizHOHTz6S0r3nMqhqsXoNo21h/s=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace "--cov-report=" "" \
--replace "--cov=numpydoc" ""
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
jinja2
sphinx
tabulate
];
nativeCheckInputs = [
matplotlib
pytestCheckHook
];
disabledTests = [
# https://github.com/numpy/numpydoc/issues/373
"test_MyClass"
"test_my_function"
"test_reference"
];
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;
};
}
|