idk peframe i guess

This commit is contained in:
Kopatz
2025-10-19 12:16:51 +02:00
parent f680361a0a
commit b4c8922f7c
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
lib,
python3Packages,
fetchPypi,
}:
python3Packages.buildPythonPackage rec {
pname = "virustotal-api";
version = "1.1.11";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-nx14OoSOkop4qhaDcmRcaJnLvWuIiVHh1jNeW4feHD0=";
};
build-system = [ python3Packages.setuptools ];
dependencies = with python3Packages; [
requests
];
meta = {
changelog = "https://github.com/blacktop/virustotal-api/releases/tag/${version}";
homepage = "https://github.com/blacktop/virustotal-api";
description = "Virus Total Public/Private/Intel API";
license = lib.licenses.mit;
};
}