1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, botocore 6, boto3 7, docutils 8, unittest2 9, mock 10}: 11 12buildPythonPackage rec { 13 pname = "flowlogs_reader"; 14 version = "3.1.0"; 15 disabled = isPy27; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "d99636423abc83bb4042d63edd56852ede9e2949cadcc3339eda8f3367826dd4"; 20 }; 21 22 propagatedBuildInputs = [ botocore boto3 docutils ]; 23 buildInputs = [ unittest2 mock ]; 24 25 meta = with lib; { 26 description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; 27 homepage = "https://github.com/obsrvbl/flowlogs-reader"; 28 maintainers = with maintainers; [ cransom ]; 29 license = licenses.asl20; 30 }; 31 32}