blob: 0078c47b375065ba8dfa25844ba95a3714c3cc62 (
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
|
{
lib,
buildPythonPackage,
docutils,
fetchPypi,
flit-core,
jinja2,
requests,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinxcontrib-confluencebuilder";
version = "3.0.0";
pyproject = true;
src = fetchPypi {
pname = "sphinxcontrib_confluencebuilder";
inherit version;
hash = "sha256-+Z4rsqozJ3DWrg7SYr7dh7CIQlCgpX9Fj6lJmcCxoMk=";
};
build-system = [ flit-core ];
dependencies = [
docutils
sphinx
requests
jinja2
];
# Tests are disabled due to a circular dependency on Sphinx
doCheck = false;
pythonImportsCheck = [ "sphinxcontrib.confluencebuilder" ];
pythonNamespaces = [ "sphinxcontrib" ];
meta = {
description = "Confluence builder for sphinx";
homepage = "https://github.com/sphinx-contrib/confluencebuilder";
changelog = "https://github.com/sphinx-contrib/confluencebuilder/blob/v${version}/CHANGES.rst";
license = lib.licenses.bsd1;
maintainers = with lib.maintainers; [ graysonhead ];
mainProgram = "sphinx-build-confluence";
};
}
|