You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{ lib, buildPythonPackage, fetchPypi, h11, enum34 }: |
|
|
|
buildPythonPackage rec { |
|
pname = "wsproto"; |
|
version = "0.11.0"; |
|
|
|
src = fetchPypi { |
|
inherit pname version; |
|
sha256 = "092qk4pbyaxx8b81hv9p7pc3ww54bwfqybhya4madka3pgv19wh2"; |
|
}; |
|
|
|
propagatedBuildInputs = [ h11 enum34 ]; |
|
|
|
}
|
|
|