Unverified Commit 7d5ac2d0 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.yaramod: 4.5.2 -> 4.6.0 (#484944)

parents f8b4761b 1d017300
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -19,16 +19,16 @@ let
    hash = "sha256-El4WA92t2O/L4wUqH6Xj8w+ANtb6liRwafDhqn8jxjQ=";
  };
in
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "yaramod";
  version = "4.5.2";
  version = "4.6.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "avast";
    repo = "yaramod";
    tag = "v${version}";
    hash = "sha256-5tZhJcgpS8BwLEFlIM+RnXeUC5gXq4TPfSe0KI6U34w=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-2XI7lGfoMHimtuQ29I1cFtV4OgfvR3Qcvh/FhA0yeBw=";
  };

  postPatch = ''
@@ -67,8 +67,8 @@ buildPythonPackage rec {
  meta = {
    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/${src.tag}/CHANGELOG.md";
    changelog = "https://github.com/avast/yaramod/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ msm ];
  };
}
})