python3.pkgs.flask-socketio: init at 3.1.0

This commit is contained in:
Jörg Thalheim 2018-12-01 10:53:06 +00:00
parent 3ad4a31c17
commit 13b5fa18bb
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, flask
, python-socketio
, coverage
}:
buildPythonPackage rec {
pname = "Flask-SocketIO";
version = "3.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "a7188b35f7874903f554b3a1a3a4465213e765c4f17182fa5cb3d9f6915da4c1";
};
propagatedBuildInputs = [
flask
python-socketio
];
checkInputs = [ coverage ];
# tests only on github, but lates release there is not tagged
doCheck = false;
meta = with lib; {
description = "Socket.IO integration for Flask applications";
homepage = http://github.com/miguelgrinberg/Flask-SocketIO/;
license = licenses.mit;
maintainers = [ maintainers.mic92 ];
};
}

View file

@ -2369,6 +2369,8 @@ in {
flask-silk = callPackage ../development/python-modules/flask-silk { };
flask-socketio = callPackage ../development/python-modules/flask-socketio { };
flask_sqlalchemy = callPackage ../development/python-modules/flask-sqlalchemy { };
flask_testing = callPackage ../development/python-modules/flask-testing { };