From 30eeef2e792e7287727f9cc6a66e7bf4b17b287f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 18 Nov 2022 07:02:28 +0100 Subject: [PATCH] python310Packages.h11: add last regression from httpcore and wsproto to passthru.tests --- pkgs/development/python-modules/h11/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/h11/default.nix b/pkgs/development/python-modules/h11/default.nix index 5e58310106ac..bb61c5310354 100644 --- a/pkgs/development/python-modules/h11/default.nix +++ b/pkgs/development/python-modules/h11/default.nix @@ -3,6 +3,8 @@ , fetchPypi , pytestCheckHook , pythonOlder +, httpcore +, wsproto }: buildPythonPackage rec { @@ -20,6 +22,10 @@ buildPythonPackage rec { # Some of the tests use localhost networking. __darwinAllowLocalNetworking = true; + passthru.tests = { + inherit httpcore wsproto; + }; + meta = with lib; { description = "Pure-Python, bring-your-own-I/O implementation of HTTP/1.1"; homepage = "https://github.com/python-hyper/h11";