biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / latexcodec / default.nix
blobc2890bf591ec2eadddab10f07f88de621af755ba
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   pytest,
7 }:
9 buildPythonPackage rec {
10   pname = "latexcodec";
11   version = "3.0.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-kX3F/iQnYswZ2WPmVItC1joRgCjN0zYdYjl+O2OLa8U=";
17   };
19   propagatedBuildInputs = [ six ];
21   nativeCheckInputs = [ pytest ];
23   checkPhase = ''
24     pytest
25   '';
27   meta = with lib; {
28     homepage = "https://github.com/mcmtroffaes/latexcodec";
29     description = "Lexer and codec to work with LaTeX code in Python";
30     license = licenses.mit;
31   };