2020-04-24 23:36:52 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, requests
|
|
|
|
, jinja2
|
|
|
|
, pillow
|
|
|
|
, rasterio
|
|
|
|
, shapely
|
2020-11-21 19:51:51 +00:00
|
|
|
, ndjson
|
|
|
|
, backoff
|
2021-01-09 10:05:03 +00:00
|
|
|
, google-api-core
|
|
|
|
, backports-datetime-fromisoformat
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "labelbox";
|
2021-04-26 19:14:03 +00:00
|
|
|
version = "2.5.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-26 19:14:03 +00:00
|
|
|
sha256 = "7f2cbc5d4869d8acde865ad519fc1cc85338247cd7cf534334f988a040679219";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-21 19:51:51 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
jinja2 requests pillow rasterio shapely ndjson backoff
|
2021-01-09 10:05:03 +00:00
|
|
|
google-api-core backports-datetime-fromisoformat
|
2020-11-21 19:51:51 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# Test cases are not running on pypi or GitHub
|
2020-09-25 04:45:31 +00:00
|
|
|
doCheck = false;
|
2020-11-21 19:51:51 +00:00
|
|
|
pythonImportsCheck = [ "labelbox" ];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/Labelbox/Labelbox";
|
|
|
|
description = "Platform API for LabelBox";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ rakesh4g ];
|
|
|
|
};
|
|
|
|
}
|