ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / mi / miniplayer / package.nix
blob2d87078b786dc52dc7134aef62e8de7fc340247a
1 { lib
2 , python3Packages
3 , fetchPypi
4 }:
6 with python3Packages;
8 buildPythonApplication rec {
9   pname = "miniplayer";
10   version = "1.8.1";
11   format = "pyproject";
13   src = fetchPypi {
14     inherit pname version;
15     hash = "sha256-iUUsVIDLQAiaMomfA2LvvJZ2ePhgADtC6GCwIpRC1MA=";
16   };
18   build-system = [
19     setuptools
20   ];
22   dependencies = [
23     colorthief
24     ffmpeg-python
25     mpd2
26     pillow
27     pixcat
28     requests
29     ueberzug
30   ];
32   doCheck = false; # no tests
34   # pythonImportsCheck is disabled because this package doesn't expose any modules.
36   meta = with lib; {
37     description = "Curses-based MPD client with basic functionality that can also display an album art";
38     homepage = "https://github.com/GuardKenzie/miniplayer";
39     license = licenses.mit;
40     maintainers = with maintainers; [ azahi ];
41   };