Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
801 B
Nix
44 lines
801 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=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [
|
|
colorthief
|
|
ffmpeg-python
|
|
mpd2
|
|
pillow
|
|
pixcat
|
|
requests
|
|
ueberzug
|
|
];
|
|
|
|
doCheck = false; # no tests
|
|
|
|
# pythonImportsCheck is disabled because this package doesn't expose any modules.
|
|
|
|
meta = with lib; {
|
|
description = "Curses-based MPD client with basic functionality that can also display an album art";
|
|
homepage = "https://github.com/GuardKenzie/miniplayer";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|