Revert "python310Packages.h11: 0.13.0 -> 0.14.0"

This reverts commit 2477683031.

Reckless bumping of h11 broke httpcore and dealing with the fallout
would require bumping httpcore and subsequently other packages, which is
too risky before the branch-off.
This commit is contained in:
Martin Weinelt 2022-11-18 00:30:12 +01:00
parent 1df83ae59f
commit acad0b3a09

View File

@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "h11";
version = "0.14.0";
version = "0.13.0";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-jxn7vpnnJCD/NcALJ6NMuZN+kCqLgQ4siDAMbwo7aZ0=";
sha256 = "sha256-cIE8ETUIeiSKTTjMDhoBgf+rIYgUGpPq9WeUDDlX/wY=";
};
checkInputs = [ pytestCheckHook ];