If a Python package does not come with either `format` or `pyproject` we consider it a setuptools build, that calls `setup.py` directly, which is deprecated. This change, as a first step, migrates a large chunk of these packages to set setuptools as their explicit format This is so we can unify the problem space for the next step of the migration.
53 lines
932 B
Nix
53 lines
932 B
Nix
{
|
|
lib,
|
|
python3,
|
|
fetchPypi,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "alerta-server";
|
|
version = "9.0.1";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-v4+0l5Sx9RTxmNFnKCoKrWFl1xu1JIRZ/kiI6zi/y0I=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
bcrypt
|
|
blinker
|
|
cryptography
|
|
flask
|
|
flask-compress
|
|
flask-cors
|
|
mohawk
|
|
psycopg2
|
|
pyjwt
|
|
pymongo
|
|
pyparsing
|
|
python-dateutil
|
|
pytz
|
|
pyyaml
|
|
requests
|
|
requests-hawk
|
|
sentry-sdk
|
|
setuptools
|
|
];
|
|
|
|
# We can't run the tests from Nix, because they rely on the presence of a working MongoDB server
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"alerta"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://alerta.io";
|
|
description = "Alerta Monitoring System server";
|
|
mainProgram = "alertad";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|