python3Packages.labelbox: unbreak deps

This commit is contained in:
freezeboy 2020-11-19 01:09:49 +01:00 committed by Jonathan Ringer
parent f78411700d
commit 5a9ac6d429

View file

@ -6,6 +6,9 @@
, pillow , pillow
, rasterio , rasterio
, shapely , shapely
, ndjson
, backoff
, google_api_core
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,11 +20,16 @@ buildPythonPackage rec {
sha256 = "2be6c03dafce0a786cfab5d120196efccaf300cab5aee4d2fdad644b7bee1aef"; sha256 = "2be6c03dafce0a786cfab5d120196efccaf300cab5aee4d2fdad644b7bee1aef";
}; };
propagatedBuildInputs = [ jinja2 requests pillow rasterio shapely ]; propagatedBuildInputs = [
jinja2 requests pillow rasterio shapely ndjson backoff
google_api_core
];
# Test cases are not running on pypi or GitHub # Test cases are not running on pypi or GitHub
doCheck = false; doCheck = false;
pythonImportsCheck = [ "labelbox" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/Labelbox/Labelbox"; homepage = "https://github.com/Labelbox/Labelbox";
description = "Platform API for LabelBox"; description = "Platform API for LabelBox";