Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 31 lines 646 B view raw
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.3"; 14 15 src = fetchPypi { 16 inherit pname version; 17 sha256 = "6b515dc29329e8a3adac9d6b4fef84d80c513743be57ae66b54bcb30060172c6"; 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}