depot/third_party/nixpkgs/pkgs/applications/audio/miniplayer/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

36 lines
760 B
Nix

{ lib
, python3Packages
, fetchPypi
}:
with python3Packages;
buildPythonApplication rec {
pname = "miniplayer";
version = "1.8.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-iUUsVIDLQAiaMomfA2LvvJZ2ePhgADtC6GCwIpRC1MA=";
};
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 ];
};
}