Merge pull request #211504 from msm-code/master

python310Packages.yaramod: init at 3.12.2
This commit is contained in:
Sandro 2023-02-22 11:55:15 +01:00 committed by GitHub
commit 988cc958c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,78 @@
{ lib
, buildPythonPackage
, cmake
, fetchFromGitHub
, pytestCheckHook
, libxcrypt
, pythonOlder
, gtest
, pybind11
, nlohmann_json
}:
let
pog = fetchFromGitHub {
owner = "metthal";
repo = "pog";
rev = "b09bbf9cea573ee62aab7eccda896e37961d16cd";
hash = "sha256-El4WA92t2O/L4wUqH6Xj8w+ANtb6liRwafDhqn8jxjQ=";
};
in
buildPythonPackage rec {
pname = "yaramod";
version = "3.12.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "avast";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-1q+lzNtm8qko9ZAxJjkmPOQjHD5GxB6YyEz0tr+QWGk=";
};
postPatch = ''
rm -r deps/googletest deps/pog/ deps/pybind11/ deps/json/json.hpp
cp -r --no-preserve=all ${pog} deps/pog/
cp -r --no-preserve=all ${nlohmann_json.src}/single_include/nlohmann/json.hpp deps/json/
cp -r --no-preserve=all ${pybind11.src} deps/pybind11/
cp -r --no-preserve=all ${gtest.src} deps/googletest/
'';
dontUseCmakeConfigure = true;
buildInputs = [
libxcrypt
];
nativeBuildInputs = [
cmake
pog
gtest
];
setupPyBuildFlags = [
"--with-unit-tests"
];
checkInputs = [
pytestCheckHook
];
pytestFlagsArray = [
"tests/"
];
pythonImportsCheck = [
"yaramod"
];
meta = with lib; {
description = "Parsing of YARA rules into AST and building new rulesets in C++";
homepage = "https://github.com/avast/yaramod";
changelog = "https://github.com/avast/yaramod/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ msm ];
};
}

View file

@ -12589,6 +12589,8 @@ self: super: with self; {
yara-python = callPackage ../development/python-modules/yara-python { };
yaramod = callPackage ../development/python-modules/yaramod { };
yarg = callPackage ../development/python-modules/yarg { };
yark = callPackage ../development/python-modules/yark { };