biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pylatexenc / default.nix
blobd48fe47bf447345a7cbf048ead80e1b133372419
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pytestCheckHook,
6 }:
8 buildPythonPackage rec {
9   pname = "pylatexenc";
10   version = "2.10";
11   format = "setuptools";
13   src = fetchFromGitHub {
14     owner = "phfaist";
15     repo = "pylatexenc";
16     rev = "v${version}";
17     hash = "sha256-3Ho04qrmCtmmrR+BUJNbtdCZcK7lXhUGJjm4yfCTUkM=";
18   };
20   pythonImportsCheck = [ "pylatexenc" ];
21   nativeCheckInputs = [ pytestCheckHook ];
23   meta = with lib; {
24     description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion";
25     homepage = "https://pylatexenc.readthedocs.io";
26     downloadPage = "https://www.github.com/phfaist/pylatexenc/releases";
27     changelog = "https://pylatexenc.readthedocs.io/en/latest/changes/";
28     license = licenses.mit;
29     maintainers = with maintainers; [ drewrisinger ];
30   };