···1{ lib
2, python3
03}:
45python3.pkgs.buildPythonApplication rec {
6 pname = "alerta-server";
7 version = "8.7.0";
89- src = python3.pkgs.fetchPypi {
10 inherit pname version;
11 sha256 = "sha256-EM3owmj+6gFjU0ARaQP3FLYXliGaGCRSaLgkiPwhGdU=";
12 };
···31 sentry-sdk
32 ];
3334- # We can't run the tests from Nix, because they rely on the presence of a working MongoDB server
35 doCheck = false;
3637 pythonImportsCheck = [
···1{ lib
2, python3
3+, fetchPypi
4}:
56python3.pkgs.buildPythonApplication rec {
7 pname = "alerta-server";
8 version = "8.7.0";
910+ src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-EM3owmj+6gFjU0ARaQP3FLYXliGaGCRSaLgkiPwhGdU=";
13 };
···32 sentry-sdk
33 ];
3435+ # We can't run the tests from Nix, because they rely on the presence of a working MongoDB server
36 doCheck = false;
3738 pythonImportsCheck = [