1{ lib, buildPythonPackage, fetchPypi 2, flask 3, six 4}: 5 6buildPythonPackage rec { 7 pname = "github-webhook"; 8 version = "1.0.4"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "b2444dbfd03deda35792bd00ebd1692597c2605c61445da79da6322afaca7a8d"; 13 }; 14 15 propagatedBuildInputs = [ flask six ]; 16 17 # touches network 18 doCheck = false; 19 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 }; 25}