Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / gntp / default.nix
blob364a59732e11f385f7f15cc87d34ec5725a1d02d
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "gntp";
5   version = "1.0.3";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l";
10   };
12   pythonImportsCheck = [ "gntp" "gntp.notifier" ];
14   # requires a growler service to be running
15   doCheck = false;
17   meta = with lib; {
18     homepage = "https://github.com/kfdm/gntp/";
19     description = "Python library for working with the Growl Notification Transport Protocol";
20     license = licenses.mit;
21     maintainers = [ maintainers.jfroche ];
22   };