nixpkgs/pkgs/applications/audio/miniplayer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
760 B
Nix
Raw Normal View History

2022-09-08 20:05:58 +00:00
{ lib
, python3Packages
2023-05-25 18:37:59 +00:00
, fetchPypi
2022-09-08 20:05:58 +00:00
}:
with python3Packages;
buildPythonApplication rec {
pname = "miniplayer";
2022-11-26 19:11:53 +00:00
version = "1.8.1";
2022-09-08 20:05:58 +00:00
format = "pyproject";
src = fetchPypi {
inherit pname version;
2022-11-26 19:11:53 +00:00
hash = "sha256-iUUsVIDLQAiaMomfA2LvvJZ2ePhgADtC6GCwIpRC1MA=";
2022-09-08 20:05:58 +00:00
};
propagatedBuildInputs = [
colorthief
ffmpeg-python
mpd2
pillow
pixcat
requests
ueberzug
];
# pythonImportsCheck is disabled because this package doesn't expose any modules.
meta = with lib; {
description = "A curses-based MPD client with basic functionality that can also display an album art";
homepage = "https://github.com/GuardKenzie/miniplayer";
license = licenses.mit;
maintainers = with maintainers; [ azahi ];
};
}