python313Packages.otxv2: init at 1.5.12 (#471292)

This commit is contained in:
Fabian Affolter
2025-12-16 09:15:57 +00:00
committed by GitHub
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
python-dateutil,
pytz,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "otxv2";
version = "1.5.12";
pyproject = true;
src = fetchFromGitHub {
owner = "AlienVault-OTX";
repo = "OTX-Python-SDK";
tag = version;
hash = "sha256-JAjBXNsX0Cuni+4L6I1RuaSfors5cBAZ2krPLhIFluY=";
};
build-system = [ setuptools ];
dependencies = [
python-dateutil
pytz
requests
];
# Tests require network access
doCheck = false;
pythonImportsCheck = [ "OTXv2" ];
meta = {
description = "The Python SDK for AlienVault OTX";
homepage = "https://github.com/AlienVault-OTX/OTX-Python-SDK";
changelog = "https://github.com/AlienVault-OTX/OTX-Python-SDK/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
+2
View File
@@ -11594,6 +11594,8 @@ self: super: with self; {
ots-python = callPackage ../development/python-modules/ots-python { };
otxv2 = callPackage ../development/python-modules/otxv2 { };
ourgroceries = callPackage ../development/python-modules/ourgroceries { };
outcome = callPackage ../development/python-modules/outcome { };