summary refs log tree commit diff
path: root/pkgs/development/python2-modules/wsproto/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python2-modules/wsproto/default.nix')
-rw-r--r--pkgs/development/python2-modules/wsproto/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/python2-modules/wsproto/default.nix b/pkgs/development/python2-modules/wsproto/default.nix
new file mode 100644
index 00000000000..a8488d8c4ab
--- /dev/null
+++ b/pkgs/development/python2-modules/wsproto/default.nix
@@ -0,0 +1,25 @@
+{ lib, buildPythonPackage, fetchPypi, h11, enum34, pytest }:
+
+buildPythonPackage rec {
+  pname = "wsproto";
+  version = "0.14.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "051s127qb5dladxa14n9nqajwq7xki1dz1was5r5v9df5a0jq8pd";
+  };
+
+  propagatedBuildInputs = [ h11 enum34 ];
+
+  checkInputs = [ pytest ];
+
+  checkPhase = ''
+    py.test
+  '';
+
+  meta = with lib; {
+    description = "Pure Python, pure state-machine WebSocket implementation";
+    homepage = "https://github.com/python-hyper/wsproto/";
+    license = licenses.mit;
+  };
+}