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