flowlogs_reader: init at 1.0.0 (#16787)

authored by cransom and committed by Franz Pletz 5f8a384b a5ee403f

+23
+23
pkgs/top-level/python-packages.nix
··· 6100 propagatedBuildInputs = with self; [ rpkg offtrac urlgrabber fedora_cert ]; 6101 }); 6102 6103 frozendict = buildPythonPackage rec { 6104 name = "frozendict-0.5"; 6105
··· 6100 propagatedBuildInputs = with self; [ rpkg offtrac urlgrabber fedora_cert ]; 6101 }); 6102 6103 + flowlogs_reader = buildPythonPackage rec { 6104 + name = "flowlogs_reader-1.0.0"; 6105 + 6106 + src = pkgs.fetchurl { 6107 + url = "mirror://pypi/f/flowlogs_reader/${name}.tar.gz"; 6108 + sha256 = "0158aki6m3pkf98hpd60088qyhrfxkmybdf8hv3qfl8nb61vaiwf"; 6109 + }; 6110 + 6111 + propagatedBuildInputs = with self; [ 6112 + botocore boto3 docutils 6113 + ]; 6114 + buildInputs = with self; [ 6115 + unittest2 mock 6116 + ]; 6117 + 6118 + meta = with pkgs.stdenv.lib; { 6119 + description = "Python library to make retrieving Amazon VPC Flow Logs from CloudWatch Logs a bit easier"; 6120 + homepage = "https://github.com/obsrvbl/flowlogs-reader"; 6121 + maintainers = with maintainers; [ cransom ]; 6122 + license = licenses.asl20; 6123 + }; 6124 + }; 6125 + 6126 frozendict = buildPythonPackage rec { 6127 name = "frozendict-0.5"; 6128