pythonPackages.flowlogs_reader: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-15 15:47:17 -04:00
committed by Frederik Rietdijk
parent f8465776dd
commit 49a61ab978
2 changed files with 31 additions and 22 deletions

View File

@@ -0,0 +1,30 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, botocore
, boto3
, docutils
, unittest2
, mock
}:
buildPythonPackage rec {
pname = "flowlogs_reader";
version = "1.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "0158aki6m3pkf98hpd60088qyhrfxkmybdf8hv3qfl8nb61vaiwf";
};
propagatedBuildInputs = [ botocore boto3 docutils ];
buildInputs = [ unittest2 mock ];
meta = with stdenv.lib; {
description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier";
homepage = "https://github.com/obsrvbl/flowlogs-reader";
maintainers = with maintainers; [ cransom ];
license = licenses.asl20;
};
}