bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
32 lines
578 B
Nix
32 lines
578 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flask,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "github-webhook";
|
|
version = "1.0.4";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b2444dbfd03deda35792bd00ebd1692597c2605c61445da79da6322afaca7a8d";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
flask
|
|
six
|
|
];
|
|
|
|
# touches network
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Framework for writing webhooks for GitHub";
|
|
homepage = "https://github.com/bloomberg/python-github-webhook";
|
|
license = licenses.mit;
|
|
};
|
|
}
|