mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
cddc669b0b
In #185430 the `unittestCheckHook` argument was introduced, causing the derivation to fail building since the `unittestCheckHook` is not passed. However the original PR already used the `unittestCheckHook` from `python3Packages`.
39 lines
800 B
Nix
39 lines
800 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, prometheus-alertmanager
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "prometheus-xmpp-alerts";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jelmer";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-gb7lFRqqw4w/B+Sw0iteDkuGsPfw/ZZ+sRMTu5vxIUo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
prometheus-alertmanager
|
|
] ++ (with python3Packages; [
|
|
aiohttp
|
|
slixmpp
|
|
prometheus-client
|
|
pyyaml
|
|
]);
|
|
|
|
checkInputs = with python3Packages; [
|
|
unittestCheckHook
|
|
pytz
|
|
];
|
|
|
|
meta = {
|
|
description = "XMPP Web hook for Prometheus";
|
|
homepage = "https://github.com/jelmer/prometheus-xmpp-alerts";
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
license = with lib.licenses; [ asl20 ];
|
|
};
|
|
}
|