Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a17f7277a8ec
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6b4633884789
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 31, 2019

  1. pythonPackages.labelbox: init at 2.1

    Rakesh4G authored and Jon committed Oct 31, 2019
    Copy the full SHA
    6b46338 View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/development/python-modules/labelbox/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/labelbox/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -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;