From 93b0545d11bf8c7f065203f7f3eaf1d0e3730dce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 21 Feb 2022 21:54:09 +0100 Subject: Add initial version --- pkgs/python/notify-send.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pkgs/python/notify-send.nix (limited to 'pkgs/python') diff --git a/pkgs/python/notify-send.nix b/pkgs/python/notify-send.nix new file mode 100644 index 0000000..8dfe953 --- /dev/null +++ b/pkgs/python/notify-send.nix @@ -0,0 +1,17 @@ +{ 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; + }; +} -- cgit v1.2.3