blob: 95e01c541bb99e4403fbe43eab0635d35dd6a6a9 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
beautifulsoup4,
docutils,
gitpython,
requests,
sphinx,
}:
buildPythonPackage rec {
pname = "canonical-sphinx-extensions";
version = "0.0.34";
pyproject = true;
src = fetchPypi {
pname = "canonical_sphinx_extensions";
inherit version;
hash = "sha256-y9wiXj4FOkOt3Pt2EFbX5xO+f8V5eaI0G6LzuGbdY0o=";
};
build-system = [
setuptools
];
dependencies = [
beautifulsoup4
docutils
gitpython
requests
sphinx
];
doCheck = false;
meta = {
description = "Collection of Sphinx extensions used by Canonical documentation";
homepage = "https://pypi.org/project/canonical-sphinx-extensions";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|