blob: acd0efdfc47af90e4f7dae68fc4b21fbc5750d7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage {
pname = "compressed-rtf";
version = "1.0.7";
pyproject = true;
src = fetchFromGitHub {
owner = "delimitry";
repo = "compressed_rtf";
# https://github.com/delimitry/compressed_rtf/issues/15
rev = "581400c1b4c69ab0d944cfb5ca82c32059bbcc96";
hash = "sha256-ivvND+cOCAmRyO8yL0+WhFY/2OkrJ+E/o4xWWd7ivHA=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "compressed_rtf" ];
enabledTestPaths = [ "tests/tests.py" ];
meta = {
description = "Compressed Rich Text Format (RTF) compression and decompression";
homepage = "https://github.com/delimitry/compressed_rtf";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
|