silx: 2.1.1 -> 2.1.2 (#361612)
[NixPkgs.git] / pkgs / development / python-modules / latexrestricted / default.nix
blob6c567519fff98ec90ad7a5457fe6fce9f260c2dc
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6 }:
8 buildPythonPackage rec {
9   pname = "latexrestricted";
10   version = "0.6.2";
11   pyproject = true;
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-1R0hpBGXpYH/KcD4GFUfFvoOaJDe+Sl5msC952KnqmA=";
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   };