blob: 0b576f6bc4228fa225dbf26b13c6f88a3c86ee11 (
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
|
{
buildPythonPackage,
fetchPypi,
setuptools,
versioneer,
sphinx,
lib,
}:
buildPythonPackage rec {
pname = "autodocsumm";
version = "0.2.14";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "autodocsumm";
hash = "sha256-KDmp1PrMPE7M0wbAhpVUCREEK0bur83DID5tC6tAvHc=";
};
build-system = [ setuptools ];
dependencies = [
versioneer
sphinx
];
pythonImportsCheck = [ "autodocsumm" ];
meta = {
description = "Extended sphinx autodoc including automatic autosummaries";
homepage = "https://github.com/Chilipp/autodocsumm";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|