My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/gntp/default.nix

23 lines
587 B

{ lib, buildPythonPackage, fetchPypi }:
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 ];
};
}