summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-engineio')
-rw-r--r--pkgs/development/python-modules/python-engineio/default.nix10
1 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-engineio/default.nix b/pkgs/development/python-modules/python-engineio/default.nix
index 0cbf374c2a52..ecbdb73abc06 100644
--- a/pkgs/development/python-modules/python-engineio/default.nix
+++ b/pkgs/development/python-modules/python-engineio/default.nix
@@ -48,9 +48,13 @@ buildPythonPackage rec {
pythonImportsCheck = [ "engineio" ];
meta = with stdenv.lib; {
- description = "Engine.IO server";
+ description = "Python based Engine.IO client and server";
+ longDescription = ''
+ Engine.IO is a lightweight transport protocol that enables real-time
+ bidirectional event-based communication between clients and a server.
+ '';
homepage = "https://github.com/miguelgrinberg/python-engineio/";
- license = licenses.mit;
- maintainers = [ maintainers.mic92 ];
+ license = with licenses; [ mit ];
+ maintainers = with maintainers; [ mic92 ];
};
}