blob: 21ed95a961154511d1c0b95bebab1d2819b732e9 (
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
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
plasTeX,
plastexshowmore,
plastexdepgraph,
click,
rich,
rich-click,
tomlkit,
jinja2,
gitpython,
}:
buildPythonPackage {
pname = "leanblueprint";
version = "0.0.20";
pyproject = true;
src = fetchFromGitHub {
repo = "leanblueprint";
owner = "PatrickMassot";
rev = "v0.0.20";
hash = "sha256-jCNIf0pTO/7M4aLrbFyjGcTPmaIQnw32itKJdyCMn+g=";
};
build-system = [ setuptools ];
dependencies = [
plasTeX
plastexshowmore
plastexdepgraph
click
rich
rich-click
tomlkit
jinja2
gitpython
];
pythonImportsCheck = [ "leanblueprint" ];
meta = {
description = "This plasTeX plugin allowing to write blueprints for Lean 4 projects";
homepage = "https://github.com/PatrickMassot/leanblueprint";
maintainers = with lib.maintainers; [ niklashh ];
license = lib.licenses.asl20;
};
}
|