depot/third_party/nixpkgs/pkgs/development/python-modules/rtfunicode/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

30 lines
725 B
Nix

{
buildPythonPackage,
lib,
fetchFromGitHub,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "rtfunicode";
version = "1.4";
src = fetchFromGitHub {
owner = "mjpieters";
repo = "rtfunicode";
rev = "refs/tags/${version}";
hash = "sha256-5lmiazxiEENpdqzVgoKQoG2OW/w5nGmC8odulo2XaLo=";
};
nativeBuildInputs = [ unittestCheckHook ];
pythonImportsCheck = [ "rtfunicode" ];
meta = with lib; {
description = "Encoder for unicode to RTF 1.5 command sequences";
maintainers = [ maintainers.lucasew ];
license = licenses.bsd2;
homepage = "https://github.com/mjpieters/rtfunicode";
changelog = "https://github.com/mjpieters/rtfunicode/releases/tag/${version}";
};
}