4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
46 lines
1.0 KiB
Nix
46 lines
1.0 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, pythonOlder
|
|
, bcrypt, blinker, flask, flask-compress, flask-cors, mohawk, psycopg2, pyjwt, pymongo, python-dateutil, pytz, pyyaml, requests, requests-hawk, sentry-sdk
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "alerta-server";
|
|
version = "8.1.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "32a97eee95aea5527f6efa844c18b727fe4a6d61356ea3c0769a29a163ddcb7e";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
bcrypt
|
|
blinker
|
|
flask
|
|
flask-compress
|
|
flask-cors
|
|
mohawk
|
|
psycopg2
|
|
pyjwt
|
|
pymongo
|
|
python-dateutil
|
|
pytz
|
|
pyyaml
|
|
requests
|
|
requests-hawk
|
|
sentry-sdk
|
|
];
|
|
|
|
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 lib; {
|
|
homepage = "https://alerta.io";
|
|
description = "Alerta Monitoring System server";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|