f3282c8d1e
* treewide: remove unused variables * making ofborg happy
30 lines
931 B
Nix
30 lines
931 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pyyaml
|
|
, python-dateutil, requests, pymongo, raven, bcrypt, flask, pyjwt, flask-cors, psycopg2, pytz, flask-compress, jinja2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "alerta-server";
|
|
version = "6.7.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "e8dc3428248a5b20c4fe8da76c2d353b715d515bd4879928c499671d4360a90f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ python-dateutil requests pymongo raven bcrypt flask pyjwt flask-cors psycopg2 pytz flask-compress jinja2 pyyaml];
|
|
|
|
doCheck = false; # We can't run the tests from Nix, because they rely on the presence of a working MongoDB server
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/alertad --prefix PYTHONPATH : "$PYTHONPATH"
|
|
'';
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://alerta.io;
|
|
description = "Alerta Monitoring System server";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|