1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 flask,
6 six,
7}:
8
9buildPythonPackage rec {
10 pname = "github-webhook";
11 version = "1.0.4";
12 format = "setuptools";
13
14 src = fetchPypi {
15 inherit pname version;
16 sha256 = "b2444dbfd03deda35792bd00ebd1692597c2605c61445da79da6322afaca7a8d";
17 };
18
19 propagatedBuildInputs = [
20 flask
21 six
22 ];
23
24 # touches network
25 doCheck = false;
26
27 meta = with lib; {
28 description = "Framework for writing webhooks for GitHub";
29 homepage = "https://github.com/bloomberg/python-github-webhook";
30 license = licenses.mit;
31 };
32}