Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
69 lines
1.5 KiB
Nix
69 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
qt5,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "labelImg";
|
|
version = "1.8.6";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "HumanSignal";
|
|
repo = "labelImg";
|
|
tag = "v${version}";
|
|
hash = "sha256-RJxCtiDOePajlrjy9cpKETSKsWlH/Dlu1iFMj2aO4XU=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
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=";
|
|
})
|
|
];
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
pyqt5
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
distutils
|
|
pyqt5
|
|
lxml
|
|
];
|
|
|
|
preBuild = ''
|
|
make qt5py3
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm644 libs/resources.py $out/${python3Packages.python.sitePackages}/libs
|
|
'';
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
|
|
'';
|
|
|
|
pythonImportsCheck = [ "labelImg" ];
|
|
|
|
meta = {
|
|
description = "Graphical image annotation tool and label object bounding boxes in images";
|
|
mainProgram = "labelImg";
|
|
homepage = "https://github.com/HumanSignal/labelImg";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.cmcdragonkai ];
|
|
};
|
|
}
|