python3Packages.rtfunicode: init at 1.4
Signed-off-by: lucasew <lucas59356@gmail.com>
This commit is contained in:
parent
2a21e2a32d
commit
2b42796b5d
29
pkgs/development/python-modules/rtfunicode/default.nix
Normal file
29
pkgs/development/python-modules/rtfunicode/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ 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}";
|
||||
};
|
||||
}
|
@ -6771,6 +6771,8 @@ self: super: with self; {
|
||||
|
||||
mailmanclient = callPackage ../development/python-modules/mailmanclient { };
|
||||
|
||||
rtfunicode = callPackage ../development/python-modules/rtfunicode { };
|
||||
|
||||
rtmixer = callPackage ../development/python-modules/rtmixer { };
|
||||
|
||||
regress = callPackage ../development/python-modules/regress { };
|
||||
|
Loading…
Reference in New Issue
Block a user