14 buildPythonPackage rec {
19 disabled = pythonOlder "3.7";
21 src = fetchFromGitHub {
24 rev = "refs/tags/${version}";
25 hash = "sha256-pMljLoJBSLq1UxXn+iOeiebWgVfdxW8uzdXPsZtANuw=";
29 substituteInPlace setup.py \
30 --replace-fail "pytest-runner" ""
33 pythonRelaxDeps = [ "aiohttp" ];
35 build-system = [ setuptools ];
38 dependencies = [ aiohttp ];
47 pythonImportsCheck = [ "vt" ];
50 description = "Python client library for VirusTotal";
51 homepage = "https://virustotal.github.io/vt-py/";
52 changelog = "https://github.com/VirusTotal/vt-py/releases/tag//${version}";
53 license = with licenses; [ asl20 ];
54 maintainers = with maintainers; [ fab ];