1 { lib, buildPythonApplication, fetchFromGitHub, pyqt5, qt5, git-annex-adapter }:
3 buildPythonApplication rec {
4 pname = "git-annex-metadata-gui";
7 src = fetchFromGitHub {
9 repo = "git-annex-metadata-gui";
11 sha256 = "03kch67k0q9lcs817906g864wwabkn208aiqvbiyqp1qbg99skam";
15 substituteInPlace setup.py --replace "'PyQt5', " ""
18 nativeBuildInputs = [ qt5.wrapQtAppsHook ];
21 makeWrapperArgs+=("''${qtWrapperArgs[@]}")
24 propagatedBuildInputs = [ pyqt5 git-annex-adapter ];
27 homepage = "https://github.com/alpernebbi/git-annex-metadata-gui";
28 description = "Graphical interface for git-annex metadata commands";
29 maintainers = with maintainers; [ dotlambda ];
30 license = licenses.gpl3Plus;
31 platforms = with platforms; linux;