Merge pull request #13785 from kamilchm/ntfy

ntfy: init at 1.2.0
This commit is contained in:
Robin Gloster 2016-03-09 08:28:27 +01:00
commit 63347357ac
2 changed files with 22 additions and 0 deletions

View file

@ -2631,6 +2631,8 @@ let
# ntfsprogs are merged into ntfs-3g
ntfsprogs = pkgs.ntfs3g;
ntfy = pythonPackages.ntfy;
ntopng = callPackage ../tools/networking/ntopng { };
ntp = callPackage ../tools/networking/ntp {

View file

@ -12816,6 +12816,26 @@ in modules // {
};
};
ntfy = buildPythonPackage rec {
version = "1.2.0";
name = "ntfy-${version}";
src = pkgs.fetchFromGitHub {
owner = "dschep";
repo = "ntfy";
rev = "v${version}";
sha256 = "0yjxwisxpxy3vpnqk9nw5k3db3xx6wyf6sk1px9m94s30glcq2cc";
};
propagatedBuildInputs = with self; [ appdirs pyyaml requests dbus ];
meta = {
description = "A utility for sending notifications, on demand and when commands finish";
homepage = http://ntfy.rtfd.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ kamilchm ];
};
};
ntplib = buildPythonPackage rec {
name = "ntplib-0.3.2";
src = pkgs.fetchurl {