mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
Merge pull request #64464 from jonringer/update-github-webhook
pythonPackages.github-webhook: unstable-2016-03-11 to 1.0.2
This commit is contained in:
commit
13515ad544
|
@ -1,28 +1,25 @@
|
||||||
{ stdenv
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
, buildPythonPackage
|
|
||||||
, fetchgit
|
|
||||||
, flask
|
, flask
|
||||||
|
, six
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "github-webhook";
|
pname = "github-webhook";
|
||||||
version = "unstable-2016-03-11";
|
version = "1.0.2";
|
||||||
|
|
||||||
# There is a PyPI package but an older one.
|
src = fetchPypi {
|
||||||
src = fetchgit {
|
inherit pname version;
|
||||||
url = "https://github.com/bloomberg/python-github-webhook.git";
|
sha256 = "04jdf595gv97s4br0ym8izca3i6d1nfwcrpi4s26hkvn3czz84sv";
|
||||||
rev = "ca1855479ee59c4373da5425dbdce08567605d49";
|
|
||||||
sha256 = "0mqwig9281iyzbphp1d21a4pqdrf98vs9k8lqpqx6spzgqaczx5f";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ flask ];
|
propagatedBuildInputs = [ flask six ];
|
||||||
# No tests
|
|
||||||
|
# touches network
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A framework for writing webhooks for GitHub";
|
description = "A framework for writing webhooks for GitHub";
|
||||||
|
homepage = "https://github.com/bloomberg/python-github-webhook";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
homepage = https://github.com/bloomberg/python-github-webhook;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue