python3Packages.circuit-webhook: init at 1.0.1

This commit is contained in:
Fabian Affolter 2022-02-03 19:10:17 +01:00 committed by Jonathan Ringer
parent d0e8f0c951
commit e72710456d
2 changed files with 34 additions and 0 deletions

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "circuit-webhook";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-NhePKBfzdkw7iVHmVrOxf8ZcQrb1Sq2xMIfu4P9+Ppw=";
};
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"circuit_webhook"
];
meta = with lib; {
description = "Module for Unify Circuit API webhooks";
homepage = "https://github.com/braam/unify/tree/master/circuit-webhook-python";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

@ -1581,6 +1581,8 @@ in {
ci-py = callPackage ../development/python-modules/ci-py { };
circuit-webhook = callPackage ../development/python-modules/circuit-webhook { };
circuitbreaker = callPackage ../development/python-modules/circuitbreaker { };
cirq = callPackage ../development/python-modules/cirq { };