Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python.pkgs.h2: 2.5.1 -> 3.0.1

+22 -17
+21
pkgs/development/python-modules/h2/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi 2 + , enum34, hpack, hyperframe }: 3 + 4 + buildPythonPackage rec { 5 + name = "${pname}-${version}"; 6 + pname = "h2"; 7 + version = "3.0.1"; 8 + 9 + src = fetchPypi { 10 + inherit pname version; 11 + sha256 = "0r3f43r0v7sqgdjjg5ngw0dndk2v6cyd0jncpwya54m37y42z5mj"; 12 + }; 13 + 14 + propagatedBuildInputs = [ enum34 hpack hyperframe ]; 15 + 16 + meta = with stdenv.lib; { 17 + description = "HTTP/2 State-Machine based protocol implementation"; 18 + homepage = "http://hyper.rtfd.org/"; 19 + license = licenses.mit; 20 + }; 21 + }
+1 -17
pkgs/top-level/python-packages.nix
··· 11606 11606 11607 11607 hyperframe = callPackage ../development/python-modules/hyperframe { }; 11608 11608 11609 - h2 = buildPythonPackage rec { 11610 - name = "h2-${version}"; 11611 - version = "2.5.1"; 11612 - 11613 - src = pkgs.fetchurl { 11614 - url = "mirror://pypi/h/h2/${name}.tar.gz"; 11615 - sha256 = "0xhzm5vcfhdq3mihynwh4ljwi0r06lvzk3ypr0gmmbcp1x43ffb7"; 11616 - }; 11617 - 11618 - propagatedBuildInputs = with self; [ enum34 hpack hyperframe ]; 11619 - 11620 - meta = { 11621 - description = "HTTP/2 State-Machine based protocol implementation"; 11622 - homepage = "http://hyper.rtfd.org/"; 11623 - license = licenses.mit; 11624 - }; 11625 - }; 11609 + h2 = callPackage ../development/python-modules/h2 { }; 11626 11610 11627 11611 editorconfig = buildPythonPackage rec { 11628 11612 name = "EditorConfig-${version}";