pythonPackages.wsproto: init at 0.11.0

This commit is contained in:
Franz Pletz 2018-03-05 17:18:02 +01:00
parent 92cbfd8555
commit 4ff4ef51b7
No known key found for this signature in database
GPG key ID: 846FDED7792617B4
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ lib, buildPythonPackage, fetchPypi, h11, enum34 }:
buildPythonPackage rec {
pname = "wsproto";
version = "0.11.0";
src = fetchPypi {
inherit pname version;
sha256 = "092qk4pbyaxx8b81hv9p7pc3ww54bwfqybhya4madka3pgv19wh2";
};
propagatedBuildInputs = [ h11 enum34 ];
}

View file

@ -21269,6 +21269,8 @@ EOF
us = callPackage ../development/python-modules/us { };
wsproto = callPackage ../development/python-modules/wsproto { };
h11 = callPackage ../development/python-modules/h11 { };
});