Unverified Commit 8ca7bd84 authored by Niklas Halonen's avatar Niklas Halonen
Browse files

python312Packages.plastexdepgraph: init at 0.0.4

parent bd5255a1
Loading
Loading
Loading
Loading
+38 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  pygraphviz,
  plasTeX,
}:
buildPythonPackage {
  pname = "plastexdepgraph";
  version = "0.0.4";
  pyproject = true;

  src = fetchFromGitHub {
    repo = "plastexdepgraph";
    owner = "PatrickMassot";
    rev = "0.0.4";
    hash = "sha256-Q13uYYZe1QgZHS4Nj8ugr+Fmhva98ttJj3AlXTK6XDw=";
  };

  build-system = [ setuptools ];

  dependencies = [
    pygraphviz
    plasTeX
  ];

  meta = {
    description = "plasTeX plugin allowing to build dependency graphs";
    homepage = "https://github.com/PatrickMassot/plastexdepgraph";
    maintainers = with lib.maintainers; [ niklashh ];
    license = lib.licenses.asl20;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10410,6 +10410,8 @@ self: super: with self; {
  plasTeX = callPackage ../development/python-modules/plasTeX { };
  plastexdepgraph = callPackage ../development/python-modules/plastexdepgraph { };
  plaster-pastedeploy = callPackage ../development/python-modules/plaster-pastedeploy { };
  platformdirs = callPackage ../development/python-modules/platformdirs { };