python312Packages.leanblueprint: init at 0.0.10

This commit is contained in:
Niklas Halonen 2024-07-19 20:26:25 +03:00
parent c46383a57c
commit bdb7b33b73
No known key found for this signature in database
GPG Key ID: 7912D083CF630FD3
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,54 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
plasTeX,
plastexshowmore,
plastexdepgraph,
click,
rich,
rich-click,
tomlkit,
jinja2,
gitpython,
}:
buildPythonPackage {
pname = "leanblueprint";
version = "0.0.10";
pyproject = true;
src = fetchFromGitHub {
repo = "leanblueprint";
owner = "PatrickMassot";
rev = "v0.0.10";
hash = "sha256-CUYdxEXgTf2vKDiOoeW4RV6tQ6prFhA4qMc0olZtZBM=";
};
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;
};
}

View File

@ -6711,6 +6711,8 @@ self: super: with self; {
leather = callPackage ../development/python-modules/leather { };
leanblueprint = callPackage ../development/python-modules/leanblueprint { };
leb128 = callPackage ../development/python-modules/leb128 { };
led-ble = callPackage ../development/python-modules/led-ble { };