summary refs log tree commit diff
path: root/pkgs/development/python-modules/wsproto/default.nix
blob: e98fcf205fd595da3db569cef3bdb9d3d0c5879b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, buildPythonPackage, fetchPypi, h11, enum34 }:

buildPythonPackage rec {
  pname = "wsproto";
  version = "0.11.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "092qk4pbyaxx8b81hv9p7pc3ww54bwfqybhya4madka3pgv19wh2";
  };

  propagatedBuildInputs = [ h11 enum34 ];

}