02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
49 lines
830 B
Nix
49 lines
830 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, yara
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yara-python";
|
|
version = "4.2.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "VirusTotal";
|
|
repo = "yara-python";
|
|
rev = "v${version}";
|
|
hash = "sha256-spUQuezQMqaG1hboM0/Gs7siCM6x0b40O+sV7qGGBng=";
|
|
};
|
|
|
|
buildInputs = [
|
|
yara
|
|
];
|
|
|
|
checkInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
setupPyBuildFlags = [
|
|
"--dynamic-linking"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"tests.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"yara"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python interface for YARA";
|
|
homepage = "https://github.com/VirusTotal/yara-python";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|