Skip to content

Commit

Permalink
Merge pull request #211504 from msm-code/master
Browse files Browse the repository at this point in the history
python310Packages.yaramod: init at 3.12.2
  • Loading branch information
SuperSandro2000 authored Feb 22, 2023
2 parents 214e934 + c585e1e commit 988cc95
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
78 changes: 78 additions & 0 deletions pkgs/development/python-modules/yaramod/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 988cc95

Please sign in to comment.