mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python.pkgs.hyperframe: 4.0.1 -> 5.1.0
This commit is contained in:
parent
14d3a7d744
commit
9d8cc4fab0
17
pkgs/development/python-modules/hyperframe/default.nix
Normal file
17
pkgs/development/python-modules/hyperframe/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -11604,21 +11604,7 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
hyperframe = buildPythonPackage rec {
|
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
h2 = buildPythonPackage rec {
|
h2 = buildPythonPackage rec {
|
||||||
name = "h2-${version}";
|
name = "h2-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user