python3Packages.alerta-server: fix build
This commit is contained in:
parent
063c756b33
commit
9050ae07cf
1 changed files with 19 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pyyaml
|
||||
, python-dateutil, requests, pymongo, raven, bcrypt, flask, pyjwt, flask-cors, psycopg2, pytz, flask-compress, jinja2
|
||||
{ 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 {
|
||||
|
@ -11,7 +11,23 @@ buildPythonPackage rec {
|
|||
sha256 = "894d240c51428225264867a80094b9743d71272635a18ddfefa5832b61fed2c6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ python-dateutil requests pymongo raven bcrypt flask pyjwt flask-cors psycopg2 pytz flask-compress jinja2 pyyaml];
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue