nixpkgs/pkgs/development/python-modules/labelbox/default.nix

32 lines
646 B
Nix
Raw Normal View History

2019-10-31 08:19:05 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, requests
, jinja2
, pillow
, rasterio
, shapely
}:
buildPythonPackage rec {
pname = "labelbox";
2019-12-19 20:31:14 +01:00
version = "2.3";
2019-10-31 08:19:05 +01:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:14 +01:00
sha256 = "6b515dc29329e8a3adac9d6b4fef84d80c513743be57ae66b54bcb30060172c6";
2019-10-31 08:19:05 +01:00
};
propagatedBuildInputs = [ jinja2 requests pillow rasterio shapely ];
# Test cases are not running on pypi or GitHub
doCheck = false;
meta = with lib; {
homepage = https://github.com/Labelbox/Labelbox;
description = "Platform API for LabelBox";
license = licenses.asl20;
maintainers = with maintainers; [ rakesh4g ];
};
}