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

python312Packages.plasTeX: init at 3.1

parent a07d0623
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  setuptools,

  # dependencies
  typing-extensions,
  pillow,
  jinja2,
  unidecode,
}:
buildPythonPackage {
  pname = "plasTeX";
  version = "3.1";
  pyproject = true;

  src = fetchFromGitHub {
    repo = "plastex";
    owner = "plastex";
    rev = "193747318f7ebadd19eaaa1e9996da42a31a2697"; # The same as what is published on PyPi for version 3.1. See <https://github.com/plastex/plastex/issues/386>
    hash = "sha256-Muuin7n0aPOZwlUaB32pONy5eyIjtPNb4On5gC9wOcQ=";
  };

  build-system = [ setuptools ];

  dependencies = [
    typing-extensions
    pillow
    jinja2
    unidecode
  ];

  meta = {
    description = "plasTeX is a Python package to convert LaTeX markup to DOM";
    homepage = "https://plastex.github.io/plastex/";
    maintainers = with lib.maintainers; [ niklashh ];
    license = lib.licenses.asl20;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -10408,6 +10408,8 @@ self: super: with self; {
  plaster = callPackage ../development/python-modules/plaster { };
  plasTeX = callPackage ../development/python-modules/plasTeX { };
  plaster-pastedeploy = callPackage ../development/python-modules/plaster-pastedeploy { };
  platformdirs = callPackage ../development/python-modules/platformdirs { };