aboutsummaryrefslogtreecommitdiff
path: root/pkgs/python/notify-send.nix
blob: 8dfe95311244d3ea11e91d65c382c3470c9c7b48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
  };
}