Merge pull request #190380 from azahi/miniplayer
This commit is contained in:
commit
5b9ffa77b5
35
pkgs/applications/audio/miniplayer/default.nix
Normal file
35
pkgs/applications/audio/miniplayer/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -8290,6 +8290,8 @@ with pkgs;
|
||||
|
||||
minidlna = callPackage ../tools/networking/minidlna { };
|
||||
|
||||
miniplayer = callPackage ../applications/audio/miniplayer { };
|
||||
|
||||
minipro = callPackage ../tools/misc/minipro { };
|
||||
|
||||
minisign = callPackage ../tools/security/minisign { };
|
||||
|
Loading…
Reference in New Issue
Block a user