28 lines
801 B
Nix
28 lines
801 B
Nix
|
{ stdenv, buildPythonApplication, fetchFromGitHub, pyqt5, git-annex-adapter }:
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
name = "git-annex-metadata-gui-${version}";
|
||
|
version = "0.2.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "alpernebbi";
|
||
|
repo = "git-annex-metadata-gui";
|
||
|
rev = "v${version}";
|
||
|
sha256 = "03kch67k0q9lcs817906g864wwabkn208aiqvbiyqp1qbg99skam";
|
||
|
};
|
||
|
|
||
|
prePatch = ''
|
||
|
substituteInPlace setup.py --replace "'PyQt5', " ""
|
||
|
'';
|
||
|
|
||
|
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;
|
||
|
};
|
||
|
}
|