nixpkgs/pkgs/development/python-modules/h2/default.nix

21 lines
489 B
Nix
Raw Normal View History

2017-11-02 23:33:38 +00:00
{ stdenv, buildPythonPackage, fetchPypi
, enum34, hpack, hyperframe }:
buildPythonPackage rec {
pname = "h2";
version = "3.1.1";
2017-11-02 23:33:38 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1d1svhixk3hr78ph3nx8wi7sagx1xrvm712mmk028i2rhb92p8xq";
2017-11-02 23:33:38 +00:00
};
propagatedBuildInputs = [ enum34 hpack hyperframe ];
meta = with stdenv.lib; {
description = "HTTP/2 State-Machine based protocol implementation";
homepage = "http://hyper.rtfd.org/";
license = licenses.mit;
};
}