2019-09-29 12:52:17 +01:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "rofi-mpd";
|
2020-01-20 18:22:12 +00:00
|
|
|
version = "2.0.1";
|
2019-09-29 12:52:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "JakeStanger";
|
|
|
|
repo = "Rofi_MPD";
|
|
|
|
rev = "v${version}";
|
2020-01-20 18:22:12 +00:00
|
|
|
sha256 = "12zzx0m2nwyzxzzqgzq30a27k015kcw4ylvs7cyalf5gf6sg27kl";
|
2019-09-29 12:52:17 +01:00
|
|
|
};
|
|
|
|
|
2020-01-19 22:37:37 +00:00
|
|
|
propagatedBuildInputs = with python3Packages; [ mutagen mpd2 toml appdirs ];
|
2019-09-29 12:52:17 +01:00
|
|
|
|
|
|
|
# upstream doesn't contain a test suite
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A rofi menu for interacting with MPD written in Python";
|
|
|
|
homepage = "https://github.com/JakeStanger/Rofi_MPD";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ jakestanger ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|