7bc014aa9c
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
35 lines
748 B
Nix
35 lines
748 B
Nix
{ lib
|
|
, python3Packages
|
|
}:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "miniplayer";
|
|
version = "1.7.0";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-JUlUFj/5DOTLa1XCZX/9Nj3Z9W+k4gnpJONiS4qNBIU=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|