tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.leanblueprint: init at 0.0.10
Niklas Halonen
2 years ago
bdb7b33b
c46383a5
+56
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
leanblueprint
default.nix
top-level
python-packages.nix
+54
pkgs/development/python-modules/leanblueprint/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchFromGitHub,
5
5
+
6
6
+
# build-system
7
7
+
setuptools,
8
8
+
9
9
+
# dependencies
10
10
+
plasTeX,
11
11
+
plastexshowmore,
12
12
+
plastexdepgraph,
13
13
+
click,
14
14
+
rich,
15
15
+
rich-click,
16
16
+
tomlkit,
17
17
+
jinja2,
18
18
+
gitpython,
19
19
+
}:
20
20
+
buildPythonPackage {
21
21
+
pname = "leanblueprint";
22
22
+
version = "0.0.10";
23
23
+
pyproject = true;
24
24
+
25
25
+
src = fetchFromGitHub {
26
26
+
repo = "leanblueprint";
27
27
+
owner = "PatrickMassot";
28
28
+
rev = "v0.0.10";
29
29
+
hash = "sha256-CUYdxEXgTf2vKDiOoeW4RV6tQ6prFhA4qMc0olZtZBM=";
30
30
+
};
31
31
+
32
32
+
build-system = [ setuptools ];
33
33
+
34
34
+
dependencies = [
35
35
+
plasTeX
36
36
+
plastexshowmore
37
37
+
plastexdepgraph
38
38
+
click
39
39
+
rich
40
40
+
rich-click
41
41
+
tomlkit
42
42
+
jinja2
43
43
+
gitpython
44
44
+
];
45
45
+
46
46
+
pythonImportsCheck = [ "leanblueprint" ];
47
47
+
48
48
+
meta = {
49
49
+
description = "This plasTeX plugin allowing to write blueprints for Lean 4 projects";
50
50
+
homepage = "https://github.com/PatrickMassot/leanblueprint";
51
51
+
maintainers = with lib.maintainers; [ niklashh ];
52
52
+
license = lib.licenses.asl20;
53
53
+
};
54
54
+
}
+2
pkgs/top-level/python-packages.nix
···
6711
6711
6712
6712
leather = callPackage ../development/python-modules/leather { };
6713
6713
6714
6714
+
leanblueprint = callPackage ../development/python-modules/leanblueprint { };
6715
6715
+
6714
6716
leb128 = callPackage ../development/python-modules/leb128 { };
6715
6717
6716
6718
led-ble = callPackage ../development/python-modules/led-ble { };