nixpkgs/pkgs/development/python-modules/pylatexenc/default.nix

30 lines
794 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
2020-04-21 12:35:35 +00:00
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pylatexenc";
version = "2.10";
src = fetchFromGitHub {
owner = "phfaist";
2020-04-21 12:35:35 +00:00
repo = "pylatexenc";
rev = "v${version}";
hash = "sha256-3Ho04qrmCtmmrR+BUJNbtdCZcK7lXhUGJjm4yfCTUkM=";
};
pythonImportsCheck = [ "pylatexenc" ];
2020-04-21 12:35:35 +00:00
checkInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Simple LaTeX parser providing latex-to-unicode and unicode-to-latex conversion";
homepage = "https://pylatexenc.readthedocs.io";
2020-04-21 12:35:35 +00:00
downloadPage = "https://www.github.com/phfaist/pylatexenc/releases";
2020-11-04 17:28:56 +00:00
changelog = "https://pylatexenc.readthedocs.io/en/latest/changes/";
license = licenses.mit;
maintainers = with maintainers; [ drewrisinger ];
};
2020-08-13 13:47:01 +00:00
}