python3Packages.python-socketio: update attributes

This commit is contained in:
Fabian Affolter 2021-01-06 09:01:15 +01:00
parent 1a2e6747c4
commit e391e058e0

View File

@ -1,4 +1,4 @@
{ lib { stdenv
, bidict , bidict
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
@ -30,10 +30,14 @@ buildPythonPackage rec {
pythonImportsCheck = [ "socketio" ]; pythonImportsCheck = [ "socketio" ];
meta = with lib; { meta = with stdenv.lib; {
description = "Socket.IO server"; description = "Python Socket.IO server and client";
homepage = "https://github.com/miguelgrinberg/python-socketio/"; longDescription = ''
license = licenses.mit; Socket.IO is a lightweight transport protocol that enables real-time
maintainers = [ maintainers.mic92 ]; bidirectional event-based communication between clients and a server.
'';
homepage = "https://github.com/miguelgrinberg/python-engineio/";
license = with licenses; [ mit ];
maintainers = with maintainers; [ mic92 ];
}; };
} }