python3Packages.desktop-notifier: 3.5.4 -> 3.5.6

This commit is contained in:
Stefan Frijters 2023-07-11 13:35:08 +02:00
parent 33fac37ed1
commit 073bd4e7cd
No known key found for this signature in database
GPG Key ID: 7619A6BC6E7DFA6F

View File

@ -5,13 +5,12 @@
, stdenv
, packaging
, setuptools
, importlib-resources
, dbus-next
}:
buildPythonPackage rec {
pname = "desktop-notifier";
version = "3.5.4";
version = "3.5.6";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -20,7 +19,7 @@ buildPythonPackage rec {
owner = "SamSchott";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-rMbXGkI6nVgMPzD/vSbAjfouFb4sQkoBFrLxe7vlcDg=";
hash = "sha256-txUWRCWLQ6jWrdEJ/D5+CsflNad5Onr/wLycENri1z8=";
};
nativeBuildInputs = [
@ -29,7 +28,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
packaging
importlib-resources
] ++ lib.optionals stdenv.isLinux [
dbus-next
];