10 buildPythonPackage rec {
11 pname = "yara-python";
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
21 hash = "sha256-RcrzzJQdzn+BXEp5M3ziGL6qSgfUN3wJ3JxwgjzVeuk=";
24 # undefined symbol: yr_finalize
25 # https://github.com/VirusTotal/yara-python/issues/7
27 substituteInPlace setup.py \
28 --replace "include_dirs=['yara/libyara/include', 'yara/libyara/', '.']" "libraries = ['yara']"
51 pythonImportsCheck = [
56 description = "Python interface for YARA";
57 homepage = "https://github.com/VirusTotal/yara-python";
58 license = with licenses; [ asl20 ];
59 maintainers = with maintainers; [ fab ];