1{ lib
2, buildPythonPackage
3, fetchPypi
4, requests
5, jinja2
6, pillow
7, rasterio
8, shapely
9}:
10
11buildPythonPackage rec {
12 pname = "labelbox";
13 version = "2.4.4";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "a455ae30ccb9328731fca7f7f4cefaa7da69a2fe3e43d1b742bae5ff4693c695";
18 };
19
20 propagatedBuildInputs = [ jinja2 requests pillow rasterio shapely ];
21
22 # Test cases are not running on pypi or GitHub
23 doCheck = false;
24
25 meta = with lib; {
26 homepage = "https://github.com/Labelbox/Labelbox";
27 description = "Platform API for LabelBox";
28 license = licenses.asl20;
29 maintainers = with maintainers; [ rakesh4g ];
30 };
31}