pythonPackages.labelbox: init at 2.1
This commit is contained in:
parent
a17f7277a8
commit
6b46338847
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, requests
|
||||
, jinja2
|
||||
, pillow
|
||||
, rasterio
|
||||
, shapely
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "labelbox";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "f97f01bf030b115d8b7f7b12a10ec5efe54750ad66b6b3567550b517a543ad11";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -715,6 +715,8 @@ in {
|
|||
jwcrypto = callPackage ../development/python-modules/jwcrypto { };
|
||||
|
||||
kconfiglib = callPackage ../development/python-modules/kconfiglib { };
|
||||
|
||||
labelbox = callPackage ../development/python-modules/labelbox { };
|
||||
|
||||
lammps-cython = callPackage ../development/python-modules/lammps-cython {
|
||||
mpi = pkgs.openmpi;
|
||||
|
|
Loading…
Reference in New Issue