Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / gntp / default.nix
blob4376a03782239edcecb48c0e87a4863f5bc3acf8
1 { lib, buildPythonPackage, fetchPypi }:
3 buildPythonPackage rec {
4   pname = "gntp";
5   version = "1.0.3";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1q6scs8lp84v0aph6b5c9jhv51rhq2vmzpdd38db92ybkq0g597l";
11   };
13   pythonImportsCheck = [ "gntp" "gntp.notifier" ];
15   # requires a growler service to be running
16   doCheck = false;
18   meta = with lib; {
19     homepage = "https://github.com/kfdm/gntp/";
20     description = "Python library for working with the Growl Notification Transport Protocol";
21     mainProgram = "gntp";
22     license = licenses.mit;
23     maintainers = [ maintainers.jfroche ];
24   };