Loading pkgs/development/python-modules/iocextract/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , regex }: buildPythonPackage rec { pname = "iocextract"; version = "1.15.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "InQuest"; repo = "python-iocextract"; rev = "refs/tags/v${version}"; hash = "sha256-muto8lr3sP44bLFIoAuPeS8pRv7pNP1JFKaAJV01TZY="; }; propagatedBuildInputs = [ regex ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "iocextract" ]; pytestFlagsArray = [ "tests.py" ]; meta = with lib; { description = "Module to extract Indicator of Compromises (IOC)"; homepage = "https://github.com/InQuest/python-iocextract"; changelog = "https://github.com/InQuest/python-iocextract/releases/tag/v${version}"; license = licenses.gpl2Only; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -8627,6 +8627,8 @@ with pkgs; ioccheck = callPackage ../tools/security/ioccheck { }; iocextract = with python3Packages; toPythonApplication iocextract; ioping = callPackage ../tools/system/ioping { }; ior = callPackage ../tools/system/ior { }; pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4800,6 +4800,8 @@ self: super: with self; { iocapture = callPackage ../development/python-modules/iocapture { }; iocextract = callPackage ../development/python-modules/iocextract { }; ionhash = callPackage ../development/python-modules/ionhash { }; iotawattpy = callPackage ../development/python-modules/iotawattpy { }; Loading Loading
pkgs/development/python-modules/iocextract/default.nix 0 → 100644 +46 −0 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchFromGitHub , pytestCheckHook , pythonOlder , regex }: buildPythonPackage rec { pname = "iocextract"; version = "1.15.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "InQuest"; repo = "python-iocextract"; rev = "refs/tags/v${version}"; hash = "sha256-muto8lr3sP44bLFIoAuPeS8pRv7pNP1JFKaAJV01TZY="; }; propagatedBuildInputs = [ regex ]; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "iocextract" ]; pytestFlagsArray = [ "tests.py" ]; meta = with lib; { description = "Module to extract Indicator of Compromises (IOC)"; homepage = "https://github.com/InQuest/python-iocextract"; changelog = "https://github.com/InQuest/python-iocextract/releases/tag/v${version}"; license = licenses.gpl2Only; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/all-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -8627,6 +8627,8 @@ with pkgs; ioccheck = callPackage ../tools/security/ioccheck { }; iocextract = with python3Packages; toPythonApplication iocextract; ioping = callPackage ../tools/system/ioping { }; ior = callPackage ../tools/system/ior { };
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -4800,6 +4800,8 @@ self: super: with self; { iocapture = callPackage ../development/python-modules/iocapture { }; iocextract = callPackage ../development/python-modules/iocextract { }; ionhash = callPackage ../development/python-modules/ionhash { }; iotawattpy = callPackage ../development/python-modules/iotawattpy { }; Loading