blob: 0de4e4223aa5e29f2383a979495e69479e7f9f51 (
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
42
43
44
45
46
47
48
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
pytestCheckHook,
yara,
}:
buildPythonPackage rec {
pname = "yara-python";
version = "4.5.4";
pyproject = true;
src = fetchFromGitHub {
owner = "VirusTotal";
repo = "yara-python";
tag = "v${version}";
hash = "sha256-2ZwLpkT46KNTQ1ymvMGjnrfHQaIy/rXid0kXoCBixXA=";
};
# undefined symbol: yr_finalize
# https://github.com/VirusTotal/yara-python/issues/7
postPatch = ''
substituteInPlace setup.py \
--replace-fail "include_dirs=['yara/libyara/include', 'yara/libyara/', '.']" "libraries = ['yara']"
'';
build-system = [ setuptools ];
buildInputs = [ yara ];
nativeCheckInputs = [ pytestCheckHook ];
setupPyBuildFlags = [ "--dynamic-linking" ];
enabledTestPaths = [ "tests.py" ];
pythonImportsCheck = [ "yara" ];
meta = {
description = "Python interface for YARA";
homepage = "https://github.com/VirusTotal/yara-python";
changelog = "https://github.com/VirusTotal/yara-python/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|