about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-04-17 19:56:56 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-04-17 19:56:56 +0200
commite55e8fe3e361772ae51ac3d6b51ae23497886d43 (patch)
tree379ee7cfe47814e274006f8687c03b949b87d130 /pkgs/development/python-modules
parent2000ef604bec02f788a487afd913f4e08476f765 (diff)
downloadnixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar.gz
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar.bz2
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar.lz
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar.xz
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.tar.zst
nixlib-e55e8fe3e361772ae51ac3d6b51ae23497886d43.zip
python.pkgs.wsproto: add meta
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/wsproto/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wsproto/default.nix b/pkgs/development/python-modules/wsproto/default.nix
index f9d3373ddcf9..ca9872bfbf09 100644
--- a/pkgs/development/python-modules/wsproto/default.nix
+++ b/pkgs/development/python-modules/wsproto/default.nix
@@ -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;
+  };
 }