Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / latexcodec / default.nix
blob9286792de21b9603e1c2df961559dbcd270d3261
1 { lib, buildPythonPackage, fetchPypi, six, pytest }:
3 buildPythonPackage rec {
4   pname = "latexcodec";
5   version = "3.0.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "sha256-kX3F/iQnYswZ2WPmVItC1joRgCjN0zYdYjl+O2OLa8U=";
11   };
13   propagatedBuildInputs = [ six ];
15   nativeCheckInputs = [ pytest ];
17   checkPhase = ''
18     pytest
19   '';
21   meta = with lib; {
22     homepage = "https://github.com/mcmtroffaes/latexcodec";
23     description = "Lexer and codec to work with LaTeX code in Python";
24     license = licenses.mit;
25   };