Merge pull request #222585 from fabaff/yara-bump

yara: 4.2.3 -> 4.3.0
This commit is contained in:
Fabian Affolter 2023-03-25 23:50:06 +01:00 committed by GitHub
commit 2f0ff93fcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -15,13 +15,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "yara"; pname = "yara";
version = "4.2.3"; version = "4.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "VirusTotal"; owner = "VirusTotal";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-Ol2btm1A8JdvYrjD0hPtc17A4L9wgr4l30C8VrImVoE="; hash = "sha256-xjGlK0jUDpkDXnI0odErtF+Xcx0I/orD0v5EZw8mhvs=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [

View File

@ -16,6 +16,7 @@ python3.pkgs.buildPythonApplication rec {
}; };
pythonRelaxDeps = [ pythonRelaxDeps = [
"python-dotenv"
"rich" "rich"
]; ];