depot/third_party/nixpkgs/pkgs/development/python-modules/pylatex/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

52 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
ordered-set,
pytestCheckHook,
matplotlib,
quantities,
texlive,
}:
buildPythonPackage rec {
pname = "pylatex";
version = "1.4.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "JelteF";
repo = "PyLaTeX";
rev = "v${version}";
hash = "sha256-gZKMYGMp7bzDY5+Xx9h1AFP4l0Zd936fDfSXyW5lY1k=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ ordered-set ];
pythonImportsCheck = [
"pylatex"
"pylatex.base_classes"
];
nativeCheckInputs = [
pytestCheckHook
matplotlib
quantities
(texlive.combine { inherit (texlive) scheme-small lastpage collection-fontsrecommended; })
];
meta = with lib; {
description = "A Python library for creating LaTeX files and snippets";
homepage = "https://jeltef.github.io/PyLaTeX/current/";
downloadPage = "https://github.com/JelteF/PyLaTeX/releases";
changelog = "https://jeltef.github.io/PyLaTeX/current/changelog.html";
license = licenses.mit;
maintainers = with maintainers; [ MayNiklas ];
};
}