Files
nixpkgs/pkgs/development/python-modules/iocextract/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

50 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
regex,
requests,
}:
buildPythonPackage rec {
pname = "iocextract";
version = "1.16.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "InQuest";
repo = "python-iocextract";
tag = "v${version}";
hash = "sha256-cCp9ug/TuVY1zL+kiDlFGBmfFJyAmVwxLD36WT0oRAE=";
};
propagatedBuildInputs = [
regex
requests
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "iocextract" ];
enabledTestPaths = [ "tests.py" ];
disabledTests = [
# AssertionError: 'http://exampledotcom/test' != 'http://example.com/test'
"test_refang_data"
];
meta = {
description = "Module to extract Indicator of Compromises (IOC)";
mainProgram = "iocextract";
homepage = "https://github.com/InQuest/python-iocextract";
changelog = "https://github.com/InQuest/python-iocextract/releases/tag/v${version}";
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ fab ];
};
}