mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-06 13:23:41 +00:00
35 lines
628 B
Nix
35 lines
628 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flask,
|
|
six,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "github-webhook";
|
|
version = "1.0.4";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit (finalAttrs) pname version;
|
|
sha256 = "b2444dbfd03deda35792bd00ebd1692597c2605c61445da79da6322afaca7a8d";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
dependencies = [
|
|
flask
|
|
six
|
|
];
|
|
|
|
# touches network
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Framework for writing webhooks for GitHub";
|
|
homepage = "https://github.com/bloomberg/python-github-webhook";
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|