summary refs log tree commit diff
path: root/pkgs/applications/science/machine-learning/labelimg/default.nix
blob: a952fb559ce6a9de01f70e7109b0440feaec4a60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, python2Packages, fetchurl }:
  python2Packages.buildPythonApplication rec {
    pname = "labelImg";
    version = "1.8.1";
    src = fetchurl {
      url = "https://github.com/tzutalin/labelImg/archive/v${version}.tar.gz";
      sha256 = "1banpkpbrny1jx3zsgs544xai62z5yvislbq782a5r47gv2f2k4a";
    };
    nativeBuildInputs = with python2Packages; [
      pyqt4
    ];
    propagatedBuildInputs = with python2Packages; [
      pyqt4
      lxml
    ];
    preBuild = ''
      make qt4py2
    '';
    meta = with stdenv.lib; {
      description = "LabelImg is a graphical image annotation tool and label object bounding boxes in images";
      homepage = "https://github.com/tzutalin/labelImg";
      license = licenses.mit;
      platforms = platforms.linux;
      maintainers = [ maintainers.cmcdragonkai ];
    };
  }