Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "hyperframe"; 4 version = "5.2.0"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "a9f5c17f2cc3c719b917c4f33ed1c61bd1f8dfac4b1bd23b7c80b3400971b41f"; 9 }; 10 11 meta = with stdenv.lib; { 12 description = "HTTP/2 framing layer for Python"; 13 homepage = "http://hyper.rtfd.org/"; 14 license = licenses.mit; 15 }; 16}