forked from mirrors/nixpkgs
python3Packages.vt-py: init at 0.7.4
This commit is contained in:
parent
7c1a58a630
commit
e0ad11f61b
47
pkgs/development/python-modules/vt-py/default.nix
Normal file
47
pkgs/development/python-modules/vt-py/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytest-httpserver
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "vt-py";
|
||||||
|
version = "0.7.4";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "VirusTotal";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "149fgrqnwf8nyv3msj6p614zbdi7m7s785y3fvh8fm8k7lmgqk8w";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytest-httpserver
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace setup.py \
|
||||||
|
--replace "'pytest-runner'" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "vt" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python client library for VirusTotal";
|
||||||
|
homepage = "https://virustotal.github.io/vt-py/";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9477,6 +9477,8 @@ in {
|
||||||
|
|
||||||
vsure = callPackage ../development/python-modules/vsure { };
|
vsure = callPackage ../development/python-modules/vsure { };
|
||||||
|
|
||||||
|
vt-py = callPackage ../development/python-modules/vt-py { };
|
||||||
|
|
||||||
vtk = toPythonModule (pkgs.vtk.override {
|
vtk = toPythonModule (pkgs.vtk.override {
|
||||||
pythonInterpreter = python;
|
pythonInterpreter = python;
|
||||||
enablePython = true;
|
enablePython = true;
|
||||||
|
|
Loading…
Reference in a new issue