{ lib , python3 , qt5 }: python3.pkgs.buildPythonApplication rec { pname = "patray"; version = "0.1.1"; src = python3.pkgs.fetchPypi { inherit version pname; sha256 = "0vaapn2p4257m1d5nbnwnh252b7lhl00560gr9pqh2b7xqm1bh6g"; }; patchPhase = '' sed -i '30i entry_points = { "console_scripts": [ "patray = patray.__main__:main" ] },' setup.py sed -i 's/production.txt/production.in/' setup.py sed -i '/pyside2/d' requirements/production.in ''; propagatedBuildInputs = with python3.pkgs; [ pulsectl loguru cock pyside2 ]; doCheck = false; nativeBuildInputs = [ qt5.wrapQtAppsHook ]; postFixup = '' wrapQtApp $out/bin/patray ''; meta = with lib; { description = "Yet another tray pulseaudio frontend"; homepage = "https://github.com/pohmelie/patray"; license = licenses.mit; maintainers = with maintainers; [ domenkozar ]; }; }