11 buildPythonPackage rec {
12 pname = "desktop-notifier";
16 inherit pname version;
17 sha256 = "cf359450efc0944ac4db3106e50faa9d49dcef072307c3531e6af2c8a10cd523";
20 propagatedBuildInputs = [
22 ] ++ lib.optionals (pythonOlder "3.9") [
24 ] ++ lib.optionals stdenv.isLinux [
28 # no tests available, do the imports check instead
30 pythonImportsCheck = [ "desktop_notifier" ];
33 homepage = "https://github.com/samschott/desktop-notifier";
34 description = "A Python library for cross-platform desktop notifications";
35 license = licenses.mit;
36 maintainers = with maintainers; [ sfrijters ];