ntfy: init at 1.2.0

This commit is contained in:
Kamil Chmielewski 2016-03-09 08:03:25 +01:00
parent c6b42e8429
commit efad3672d8
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 {