blob: 7895437e6b17b284a3159798c343f776e970ae87 (
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
|
{
lib,
buildPythonPackage,
fetchPypi,
pygments,
dominate,
beautifulsoup4,
docutils,
myst-parser,
setuptools,
sphinx,
}:
buildPythonPackage (finalAttrs: {
pname = "alectryon";
version = "2.0.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
sha256 = "sha256-ouuCwipCQKSlH8NpF5QZd4jx4mEYooyIcnRhtDRWOnU=";
};
build-system = [ setuptools ];
dependencies = [
pygments
dominate
beautifulsoup4
docutils
myst-parser
sphinx
];
pythonImportsCheck = [ "alectryon" ];
doCheck = false;
meta = {
homepage = "https://github.com/cpitclaudel/alectryon";
description = "Collection of tools for writing technical documents that mix Coq code and prose";
mainProgram = "alectryon";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Zimmi48 ];
};
})
|