texsurgery: init at 0.6.3 (#441091)

authored by José Romildo Malaquias and committed by GitHub 87f31411 0dc9f125

+39
+39
pkgs/by-name/te/texsurgery/package.nix
···
··· 1 + { 2 + lib, 3 + fetchPypi, 4 + python3Packages, 5 + }: 6 + 7 + python3Packages.buildPythonApplication rec { 8 + pname = "texsurgery"; 9 + version = "0.6.3"; 10 + pyproject = true; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + hash = "sha256-zoOeTRHcpDnXJ1QC7BIz9guzqL9Q7kmJ5VSGEyqanfY="; 15 + }; 16 + 17 + build-system = with python3Packages; [ 18 + setuptools 19 + ]; 20 + 21 + dependencies = with python3Packages; [ 22 + jupyter-client 23 + pyparsing 24 + ]; 25 + 26 + pythonImportsCheck = [ 27 + "texsurgery" 28 + "texsurgery.texsurgery" 29 + "texsurgery.command_line" 30 + ]; 31 + 32 + meta = { 33 + description = "Replace some commands and environments within a TeX document by evaluating code inside a jupyter kernel"; 34 + homepage = "https://pypi.org/project/texsurgery"; 35 + license = lib.licenses.mit; 36 + mainProgram = "texsurgery"; 37 + maintainers = with lib.maintainers; [ romildo ]; 38 + }; 39 + }