python312Packages.vt-py: 0.18.0 -> 0.18.1

Diff: https://github.com/VirusTotal/vt-py/compare/refs/tags/0.18.0...0.18.1

Changelog: https://github.com/VirusTotal/vt-py/releases/tag//0.18.1
This commit is contained in:
Fabian Affolter 2024-04-20 12:01:35 +02:00
parent 20c268192e
commit 98cd7e3b55
1 changed files with 11 additions and 2 deletions

View File

@ -5,13 +5,14 @@
, pytest-asyncio
, pytest-httpserver
, pytestCheckHook
, pythonRelaxDepsHook
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "vt-py";
version = "0.18.0";
version = "0.18.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -20,7 +21,7 @@ buildPythonPackage rec {
owner = "VirusTotal";
repo = "vt-py";
rev = "refs/tags/${version}";
hash = "sha256-QEe/ZoKM0uVH7Yqpgo7V17Odn4xqdEgdQeMVB+57xbA=";
hash = "sha256-rWzANh7tkayFR6V3JaF3BLhIjUlnrPMmEmI36Ncqz2M=";
};
postPatch = ''
@ -28,10 +29,18 @@ buildPythonPackage rec {
--replace-fail "pytest-runner" ""
'';
pythonRelaxDeps = [
"aiohttp"
];
build-system = [
setuptools
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
dependencies = [
aiohttp
];