python{2,3}Packages.gntp: init at 1.0.3

This commit is contained in:
Jean-François Roche 2020-10-18 22:19:16 +02:00
parent 280425690e
commit af87635776
No known key found for this signature in database
GPG key ID: D1D09DE169EA19A0
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildPythonPackage, fetchPypi, nose }:
buildPythonPackage rec {
pname = "gntp";
version = "1.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l";
};
pythonImportsCheck = [ "gntp" "gntp.notifier" ];
# requires a growler service to be running
doCheck = false;
meta = with lib; {
homepage = "https://github.com/kfdm/gntp/";
description = "Python library for working with the Growl Notification Transport Protocol";
license = licenses.mit;
maintainers = [ maintainers.jfroche ];
};
}

View file

@ -2389,6 +2389,8 @@ in {
gmusicapi = callPackage ../development/python-modules/gmusicapi { };
gntp = callPackage ../development/python-modules/gntp { };
gnureadline = callPackage ../development/python-modules/gnureadline { };
gnutls = callPackage ../development/python-modules/gnutls { };