Unverified Commit bdb7b33b authored by Niklas Halonen's avatar Niklas Halonen
Browse files

python312Packages.leanblueprint: init at 0.0.10

parent c46383a5
Loading
Loading
Loading
Loading
+54 −0
Original line number Diff line number Diff line
{
  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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };