a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
48 lines
965 B
Nix
48 lines
965 B
Nix
{ lib
|
|
, boto3
|
|
, botocore
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, parquet
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flowlogs-reader";
|
|
version = "5.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "obsrvbl";
|
|
repo = pname;
|
|
# https://github.com/obsrvbl/flowlogs-reader/issues/57
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-XHRibTSzFzWPz50elz+KdbCwTrd1DKfVMSg6UamNbzc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
botocore
|
|
boto3
|
|
parquet
|
|
python-dateutil
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"flowlogs_reader"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier";
|
|
homepage = "https://github.com/obsrvbl/flowlogs-reader";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ cransom ];
|
|
};
|
|
}
|