From bb082c5ca6c79a56e5d5f9ec97cf8e39c029904b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 4 Nov 2016 12:39:03 +0100 Subject: [PATCH] pythonPackages.git-webhook: init at 2016-03-11 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 03593957481..c0830ece079 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11880,6 +11880,28 @@ in { }; }; + github-webhook = buildPythonPackage rec { + name = "github-webhook-${version}"; + version = "unstable-2016-03-11"; + + # There is a PyPI package but an older one. + src = pkgs.fetchgit { + url = "https://github.com/bloomberg/python-github-webhook.git"; + rev = "ca1855479ee59c4373da5425dbdce08567605d49"; + sha256 = "0mqwig9281iyzbphp1d21a4pqdrf98vs9k8lqpqx6spzgqaczx5f"; + }; + + propagatedBuildInputs = with self; [ flask ]; + # No tests + doCheck = false; + + meta = { + description = "A framework for writing webhooks for GitHub"; + license = licenses.mit; + homepage = https://github.com/bloomberg/python-github-webhook; + }; + }; + goobook = buildPythonPackage rec { name = "goobook-1.9"; disabled = isPy3k;