ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / github-webhook / default.nix
blob32b86896fdd11d55d42d773d45ef3b22fb2c7af5
1 { lib, buildPythonPackage, fetchPypi
2 , flask
3 , six
4 }:
6 buildPythonPackage rec {
7   pname = "github-webhook";
8   version = "1.0.4";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "b2444dbfd03deda35792bd00ebd1692597c2605c61445da79da6322afaca7a8d";
13   };
15   propagatedBuildInputs = [ flask six ];
17   # touches network
18   doCheck = false;
20   meta = with lib; {
21     description = "A framework for writing webhooks for GitHub";
22     homepage = "https://github.com/bloomberg/python-github-webhook";
23     license = licenses.mit;
24   };