python.pkgs.wsproto: add meta

This commit is contained in:
Robert Schütz 2019-04-17 19:56:56 +02:00
parent 2000ef604b
commit e55e8fe3e3

View File

@ -1,4 +1,4 @@
{ buildPythonPackage, fetchPypi, h11, enum34, pytest }:
{ lib, buildPythonPackage, fetchPypi, h11, enum34, pytest }:
buildPythonPackage rec {
pname = "wsproto";
@ -17,4 +17,9 @@ buildPythonPackage rec {
py.test
'';
meta = with lib; {
description = "Pure Python, pure state-machine WebSocket implementation";
homepage = https://github.com/python-hyper/wsproto/;
license = licenses.mit;
};
}