about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/version-management/git-annex-metadata-gui/default.nix
blob: 3fcde8f900cc6cab1c261df33783c8b11b73c109 (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
27
28
29
30
31
32
33
34
{ lib, buildPythonApplication, fetchFromGitHub, pyqt5, qt5, git-annex-adapter }:

buildPythonApplication rec {
  pname = "git-annex-metadata-gui";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "alpernebbi";
    repo = "git-annex-metadata-gui";
    rev = "v${version}";
    sha256 = "03kch67k0q9lcs817906g864wwabkn208aiqvbiyqp1qbg99skam";
  };

  prePatch = ''
    substituteInPlace setup.py --replace "'PyQt5', " ""
  '';

  nativeBuildInputs = [ qt5.wrapQtAppsHook ];

  preFixup = ''
    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
  '';

  propagatedBuildInputs = [ pyqt5 git-annex-adapter ];

  meta = with lib; {
    homepage = "https://github.com/alpernebbi/git-annex-metadata-gui";
    description = "Graphical interface for git-annex metadata commands";
    mainProgram = "git-annex-metadata-gui";
    maintainers = with maintainers; [ dotlambda ];
    license = licenses.gpl3Plus;
    platforms = with platforms; linux;
  };
}