python{2,3}Packages.gntp: init at 1.0.3
This commit is contained in:
parent
280425690e
commit
af87635776
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/gntp/default.nix
Normal file
23
pkgs/development/python-modules/gntp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue