11 buildPythonPackage rec {
12 pname = "latexify-py";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
22 hash = "sha256-tyBIOIVRSNrhO1NOD7Zqmiksrvrm42DUY4w1IocVRl4=";
25 build-system = [ hatchling ];
27 dependencies = [ dill ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "latexify" ];
38 description = "Generates LaTeX math description from Python functions";
39 homepage = "https://github.com/google/latexify_py";
40 changelog = "https://github.com/google/latexify_py/releases/tag/v${version}";
41 license = licenses.asl20;
42 maintainers = with maintainers; [ prusnak ];