Skip to content

Commit

Permalink
pythonPackages.github-webhook: refactor move to python-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
costrouc authored and FRidh committed Oct 18, 2018
1 parent dc56c8f commit 060ba73
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 21 deletions.
28 changes: 28 additions & 0 deletions pkgs/development/python-modules/github-webhook/default.nix
@@ -0,0 +1,28 @@
{ stdenv
, buildPythonPackage
, fetchgit
, flask
}:

buildPythonPackage rec {
pname = "github-webhook";
version = "unstable-2016-03-11";

# There is a PyPI package but an older one.
src = fetchgit {
url = "https://github.com/bloomberg/python-github-webhook.git";
rev = "ca1855479ee59c4373da5425dbdce08567605d49";
sha256 = "0mqwig9281iyzbphp1d21a4pqdrf98vs9k8lqpqx6spzgqaczx5f";
};

propagatedBuildInputs = [ flask ];
# No tests
doCheck = false;

meta = with stdenv.lib; {
description = "A framework for writing webhooks for GitHub";
license = licenses.mit;
homepage = https://github.com/bloomberg/python-github-webhook;
};

}
22 changes: 1 addition & 21 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -2388,27 +2388,7 @@ in {

github3_py = callPackage ../development/python-modules/github3_py { };

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;
};
};
github-webhook = callPackage ../development/python-modules/github-webhook { };

goobook = buildPythonPackage rec {
name = "goobook-1.9";
Expand Down

0 comments on commit 060ba73

Please sign in to comment.