python.pkgs.hyperframe: 4.0.1 -> 5.1.0

This commit is contained in:
Joerg Thalheim 2017-11-02 23:32:49 +00:00
parent 14d3a7d744
commit 9d8cc4fab0
2 changed files with 18 additions and 15 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "hyperframe";
version = "5.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "017vjbb1xjak1pxcvihhilzjnmpfvhapk7k88wp6lvdkkm9l8nd2";
};
meta = with stdenv.lib; {
description = "HTTP/2 framing layer for Python";
homepage = "http://hyper.rtfd.org/";
license = licenses.mit;
};
}

View File

@ -11604,21 +11604,7 @@ in {
};
};
hyperframe = buildPythonPackage rec {
name = "hyperframe-${version}";
version = "4.0.1";
src = pkgs.fetchurl {
url = "mirror://pypi/h/hyperframe/${name}.tar.gz";
sha256 = "0hsfq0jigwa0i58z7vbnp62l7za49gmlg75vnygq2ijhkidkcmwa";
};
meta = {
description = "HTTP/2 framing layer for Python";
homepage = "http://hyper.rtfd.org/";
license = licenses.mit;
};
};
hyperframe = callPackage ../development/python-modules/hyperframe { };
h2 = buildPythonPackage rec {
name = "h2-${version}";