blob: 801d26f263b9da6706411a1f07f6ba08893902fb (
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
37
38
39
40
41
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
lzo,
pytestCheckHook,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "python-lzo";
version = "1.16";
pyproject = true;
src = fetchFromGitHub {
owner = "jd-boyd";
repo = "python-lzo";
tag = "v${version}";
hash = "sha256-iXAvOCzHPvNERMkE5y4QTHi4ZieW1wrYWYScs7zyb2c=";
};
nativeBuildInputs = [
setuptools
wheel
];
buildInputs = [ lzo ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "lzo" ];
meta = {
description = "Python bindings for the LZO data compression library";
homepage = "https://github.com/jd-boyd/python-lzo";
changelog = "https://github.com/jd-boyd/python-lzo/releases/tag/v${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ jbedo ];
};
}
|