diff options
Diffstat (limited to 'pkgs/development/python-modules/py3status/default.nix')
-rw-r--r-- | pkgs/development/python-modules/py3status/default.nix | 55 |
1 files changed, 27 insertions, 28 deletions
diff --git a/pkgs/development/python-modules/py3status/default.nix b/pkgs/development/python-modules/py3status/default.nix index 6ec4405a0368..5090946a1268 100644 --- a/pkgs/development/python-modules/py3status/default.nix +++ b/pkgs/development/python-modules/py3status/default.nix @@ -1,40 +1,39 @@ -{ lib -, buildPythonPackage -, acpi -, alsa-utils -, coreutils -, dbus-python -, fetchPypi -, file -, hatchling -, i3 -, i3ipc -, libnotify -, lm_sensors -, procps -, pydbus -, pygobject3 -, pyserial -, pytz -, requests -, setuptools -, tzlocal -, xorg +{ + lib, + buildPythonPackage, + acpi, + alsa-utils, + coreutils, + dbus-python, + fetchPypi, + file, + hatchling, + i3, + i3ipc, + libnotify, + lm_sensors, + procps, + pydbus, + pygobject3, + pyserial, + pytz, + requests, + setuptools, + tzlocal, + xorg, }: buildPythonPackage rec { pname = "py3status"; - version = "3.57"; + version = "3.59"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-6l0l7sbPspdF/TYTOKaWsgOdpfDUs0PyFVKGUBNPwIA="; + hash = "sha256-3m/34xfPpe8T4yicbTtQtTqfq5Zz2T0AZl8fCKRg/CE="; }; - nativeBuildInputs = [ - hatchling - ]; + nativeBuildInputs = [ hatchling ]; propagatedBuildInputs = [ pytz @@ -69,6 +68,6 @@ buildPythonPackage rec { homepage = "https://github.com/ultrabug/py3status"; changelog = "https://github.com/ultrabug/py3status/blob/${version}/CHANGELOG"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |