Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 18.09-beta 14 lines 285 B view raw
1{ buildPythonPackage, fetchPypi, h11, enum34 }: 2 3buildPythonPackage rec { 4 pname = "wsproto"; 5 version = "0.11.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "092qk4pbyaxx8b81hv9p7pc3ww54bwfqybhya4madka3pgv19wh2"; 10 }; 11 12 propagatedBuildInputs = [ h11 enum34 ]; 13 14}