Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 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 = "2.2.1"; 15 disabled = isPy27; 16 17 src = fetchPypi { 18 inherit pname version; 19 sha256 = "7c24156a3d6887b641ceb37b57d91805bee6c3352e8a3ca97a3274217ead9294"; 20 }; 21 22 propagatedBuildInputs = [ botocore boto3 docutils ]; 23 buildInputs = [ unittest2 mock ]; 24 25 meta = with stdenv.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}