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

python312Packages.plastexshowmore: init at 0.0.2

parent 8ca7bd84
Loading
Loading
Loading
Loading
+35 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  plasTeX,
}:

buildPythonPackage {
  pname = "plastexshowmore";
  version = "0.0.2";
  pyproject = true;

  src = fetchFromGitHub {
    repo = "plastexshowmore";
    owner = "PatrickMassot";
    rev = "0.0.2";
    hash = "sha256-b45VHHEwFA41FaInDteix56O7KYDzyKiRRSl7heHqEA=";
  };

  build-system = [ setuptools ];

  dependencies = [ plasTeX ];

  meta = {
    description = "PlasTeX plugin for adding navigation buttons";
    homepage = "https://github.com/PatrickMassot/plastexshowmore";
    maintainers = with lib.maintainers; [ niklashh ];
    license = lib.licenses.asl20;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10412,6 +10412,8 @@ self: super: with self; {
  plastexdepgraph = callPackage ../development/python-modules/plastexdepgraph { };
  plastexshowmore = callPackage ../development/python-modules/plastexshowmore { };
  plaster-pastedeploy = callPackage ../development/python-modules/plaster-pastedeploy { };
  platformdirs = callPackage ../development/python-modules/platformdirs { };