biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / latexrestricted / default.nix
blob1abc58cbd3cc657d4d7ee86220a68f40a5ca5ce9
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "latexrestricted";
10   version = "0.5.0";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-PwhVKgoXujiLC+3FPAtUdvBEgeNwD6aBK+I5p8xeLwo=";
16   };
18   build-system = [ setuptools ];
20   pythonImportsCheck = [ "latexrestricted" ];
22   # upstream has no tests
23   doCheck = false;
25   meta = {
26     homepage = "https://github.com/gpoore/latexrestricted";
27     description = "Python library for creating executables compatible with LaTeX restricted shell escape";
28     changelog = "https://github.com/gpoore/latexrestricted/blob/v${version}/CHANGELOG.md";
29     license = lib.licenses.lppl13c;
30     maintainers = with lib.maintainers; [ romildo ];
31   };