mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
qt5,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "labelImg";
|
|
version = "1.8.6";
|
|
src = fetchFromGitHub {
|
|
owner = "tzutalin";
|
|
repo = "labelImg";
|
|
rev = "v${version}";
|
|
hash = "sha256-RJxCtiDOePajlrjy9cpKETSKsWlH/Dlu1iFMj2aO4XU=";
|
|
};
|
|
nativeBuildInputs = with python3Packages; [
|
|
pyqt5
|
|
qt5.wrapQtAppsHook
|
|
];
|
|
patches = [
|
|
# fixes https://github.com/heartexlabs/labelImg/issues/838
|
|
# can be removed after next upstream version bump
|
|
(fetchpatch {
|
|
url = "https://github.com/heartexlabs/labelImg/commit/5c38b6bcddce895d646e944e3cddcb5b43bf8b8b.patch";
|
|
hash = "sha256-BmbnJS95RBfoNQT0E6JDJ/IZfBa+tv1C69+RVOSFdRA=";
|
|
})
|
|
];
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pyqt5
|
|
lxml
|
|
];
|
|
preBuild = ''
|
|
make qt5py3
|
|
'';
|
|
postInstall = ''
|
|
cp libs/resources.py $out/${python3Packages.python.sitePackages}/libs
|
|
'';
|
|
dontWrapQtApps = true;
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
meta = with lib; {
|
|
description = "Graphical image annotation tool and label object bounding boxes in images";
|
|
mainProgram = "labelImg";
|
|
homepage = "https://github.com/tzutalin/labelImg";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.cmcdragonkai ];
|
|
};
|
|
}
|