python3Packages.iocsearcher: 2.7.2 -> 2.8.3 (#522060)

This commit is contained in:
Fabian Affolter
2026-05-19 21:08:41 +00:00
committed by GitHub
@@ -20,16 +20,16 @@
solders,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "iocsearcher";
version = "2.7.2";
version = "2.8.3";
pyproject = true;
src = fetchFromGitHub {
owner = "malicialab";
repo = "iocsearcher";
tag = "v${version}";
hash = "sha256-XoBb3V/2ZMrGV+i0abt7+/xEFqv6f0y99scaw8aav04=";
tag = "v${finalAttrs.version}";
hash = "sha256-jNITY4X6ywlkjzS5Udpd46JG7PoycXyy0uJ7+UqjuF4=";
};
build-system = [ setuptools ];
@@ -61,9 +61,9 @@ buildPythonPackage rec {
meta = {
description = "Library and command line tool for extracting indicators of compromise (IOCs)";
homepage = "https://github.com/malicialab/iocsearcher";
changelog = "https://github.com/malicialab/iocsearcher/releases/tag/v${version}";
changelog = "https://github.com/malicialab/iocsearcher/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "iocsearcher";
};
}
})