3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/dupeguru/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.5 KiB
Nix
Raw Normal View History

{lib, python3Packages, gettext, qt5, fetchFromGitHub}:
2019-12-13 15:26:17 +00:00
python3Packages.buildPythonApplication rec {
pname = "dupeguru";
version = "4.1.1";
2019-12-13 15:26:17 +00:00
format = "other";
src = fetchFromGitHub {
owner = "arsenetar";
repo = "dupeguru";
rev = version;
sha256 = "sha256-0lJocrNQHTrpslbPE6xjZDWhzza8cAt2js35LvicZKg=";
2019-12-13 15:26:17 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [
gettext
python3Packages.pyqt5
qt5.wrapQtAppsHook
];
pythonPath = with python3Packages; [
pyqt5
pyqt5_sip
2019-12-13 15:26:17 +00:00
send2trash
sphinx
polib
hsaudiotag3k
];
makeFlags = [
"PREFIX=${placeholder "out"}"
2019-12-13 15:26:17 +00:00
"NO_VENV=1"
];
checkInputs = with python3Packages; [
pytestCheckHook
];
preCheck = ''
export HOME="$(mktemp -d)"
'';
2019-12-13 15:26:17 +00:00
# Avoid double wrapping Python programs.
dontWrapQtApps = true;
# TODO: A bug in python wrapper
# see https://github.com/NixOS/nixpkgs/pull/75054#discussion_r357656916
2019-12-13 15:26:17 +00:00
preFixup = ''
makeWrapperArgs="''${qtWrapperArgs[@]}"
'';
# Executable in $out/bin is a symlink to $out/share/dupeguru/run.py
# so wrapPythonPrograms hook does not handle it automatically.
2019-12-13 15:26:17 +00:00
postFixup = ''
wrapPythonProgramsIn "$out/share/dupeguru" "$out $pythonPath"
'';
meta = with lib; {
2019-12-13 15:26:17 +00:00
description = "GUI tool to find duplicate files in a system";
homepage = "https://github.com/arsenetar/dupeguru";
license = licenses.bsd3;
2021-12-11 21:00:35 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.novoxd ];
2019-12-13 15:26:17 +00:00
};
}