diff options
Diffstat (limited to 'pkgs/python')
-rw-r--r-- | pkgs/python/notify-send.nix | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/python/notify-send.nix b/pkgs/python/notify-send.nix deleted file mode 100644 index 8dfe953..0000000 --- a/pkgs/python/notify-send.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ lib, buildPythonPackage, fetchPypi }: - -buildPythonPackage rec { - pname = "notify-send"; - version = "0.0.20"; - - src = fetchPypi { - inherit pname version; - sha256 = "6fddbc5b201728984d2de809959bb6aecf9abb0de5cfa55c7324ca6f48f41e03"; - }; - - meta = with lib; { - description = "Notify send"; - homepage = "https://pypi.org/project/notify-send"; - license = licenses.gpl3; - }; -} |