4a3aa3d7d8
GitOrigin-RevId: 24c9b05ac53e422f1af81a156f1fd58499eb27fb
33 lines
915 B
Nix
33 lines
915 B
Nix
{ stdenv, 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 stdenv.lib; {
|
|
homepage = "https://github.com/alpernebbi/git-annex-metadata-gui";
|
|
description = "Graphical interface for git-annex metadata commands";
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|