python3Packages.desktop-notifier: 3.2.3 -> 3.3.0

This commit is contained in:
Stefan Frijters 2021-06-25 23:38:08 +02:00
parent 6845a74d4c
commit ee75cea8d7
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F

View file

@ -10,11 +10,12 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "desktop-notifier"; pname = "desktop-notifier";
version = "3.2.3"; version = "3.3.0";
disabled = pythonOlder "3.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "cf359450efc0944ac4db3106e50faa9d49dcef072307c3531e6af2c8a10cd523"; sha256 = "sha256-ROSZorkA2wAp2Ubh3B3KWIUxM/4r7cv/1aSJqeKnPqg=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -34,5 +35,6 @@ buildPythonPackage rec {
description = "A Python library for cross-platform desktop notifications"; description = "A Python library for cross-platform desktop notifications";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ sfrijters ]; maintainers = with maintainers; [ sfrijters ];
platforms = platforms.linux;
}; };
} }