nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "circuit-webhook";
9 version = "1.0.1";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-NhePKBfzdkw7iVHmVrOxf8ZcQrb1Sq2xMIfu4P9+Ppw=";
15 };
16
17 # Module has no tests
18 doCheck = false;
19
20 pythonImportsCheck = [ "circuit_webhook" ];
21
22 meta = {
23 description = "Module for Unify Circuit API webhooks";
24 homepage = "https://github.com/braam/unify/tree/master/circuit-webhook-python";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ fab ];
27 };
28}