about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-engineio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-06 08:46:33 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-06 08:46:33 +0100
commitaeebcd7c8ad432077f3c085763219944df2f4bff (patch)
tree0d914036f8eec8ed21dc60cdc214fcab3d41e4f4 /pkgs/development/python-modules/python-engineio
parenta47a63c0fbad06a145793c5eca01e58e89f32c44 (diff)
python3Packages.python-engineio: update attributes
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 0cbf374c2a520..ecbdb73abc066 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 ];
   };
 }