Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pylatexenc / default.nix
blob8e66fc08a6560f539c2d6f5a82780fe464eedcfc
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "pylatexenc";
9   version = "2.10";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "phfaist";
14     repo = "pylatexenc";
15     rev = "v${version}";
16     hash = "sha256-3Ho04qrmCtmmrR+BUJNbtdCZcK7lXhUGJjm4yfCTUkM=";
17   };
19   pythonImportsCheck = [ "pylatexenc" ];
20   nativeCheckInputs = [ pytestCheckHook ];
22   meta = with lib; {
23     description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion";
24     homepage = "https://pylatexenc.readthedocs.io";
25     downloadPage = "https://www.github.com/phfaist/pylatexenc/releases";
26     changelog = "https://pylatexenc.readthedocs.io/en/latest/changes/";
27     license = licenses.mit;
28     maintainers = with maintainers; [ drewrisinger ];
29   };