patray: Yet another tray pulseaudio frontend

(cherry picked from commit 4758dd48140070052212e57941dc7dd3ded1c603)
This commit is contained in:
Domen Kožar
2021-05-28 14:55:44 +02:00
committed by Dmitry Kalinkin
parent 5b3858527f
commit 8a5ec66c40
4 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, locale, pytestCheckHook, click, sortedcontainers, pyyaml }:
buildPythonPackage rec {
pname = "cock";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "1gwaklvwlyvhz2c07hdmhbnqqmpybssxzzr0399dpjk7dgdqgam3";
};
propagatedBuildInputs = [ click sortedcontainers pyyaml ];
meta = with lib; {
homepage = "https://github.com/pohmelie/cock";
description = "Configuration file with click";
license = licenses.mit;
};
}