summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-socketio
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-01-06 09:01:15 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-01-06 09:01:15 +0100
commite391e058e043058b93af18df292706d95d2ab02b (patch)
treeaa84d108b712a8c5f2950cbbdd0e921d86a273d0 /pkgs/development/python-modules/python-socketio
parent1a2e6747c4b5de553b22942f15e97f8a51af4cd1 (diff)
python3Packages.python-socketio: update attributes
Diffstat (limited to 'pkgs/development/python-modules/python-socketio')
-rw-r--r--pkgs/development/python-modules/python-socketio/default.nix16
1 files changed, 10 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/python-socketio/default.nix b/pkgs/development/python-modules/python-socketio/default.nix
index adfe6589ff4a..64386e83f694 100644
--- a/pkgs/development/python-modules/python-socketio/default.nix
+++ b/pkgs/development/python-modules/python-socketio/default.nix
@@ -1,4 +1,4 @@
-{ lib
+{ stdenv
, bidict
, buildPythonPackage
, fetchFromGitHub
@@ -30,10 +30,14 @@ buildPythonPackage rec {
pythonImportsCheck = [ "socketio" ];
- meta = with lib; {
- description = "Socket.IO server";
- homepage = "https://github.com/miguelgrinberg/python-socketio/";
- license = licenses.mit;
- maintainers = [ maintainers.mic92 ];
+ meta = with stdenv.lib; {
+ description = "Python Socket.IO server and client";
+ longDescription = ''
+ Socket.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 = with licenses; [ mit ];
+ maintainers = with maintainers; [ mic92 ];
};
}