python3Packages.httpie: skip pie.dev network tests on darwin

This commit is contained in:
Harinn
2026-05-11 22:05:42 +07:00
parent f788c73282
commit ad7df04dfe
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
charset-normalizer,
defusedxml,
@@ -112,6 +113,13 @@ buildPythonPackage rec {
++ lib.optionals (pythonAtLeast "3.14") [
# https://github.com/httpie/cli/issues/1641
"test_lazy_choices_help"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# requires network: hit pie.dev (sandbox blocks external)
"remote_httpbin"
"chunked"
"test_saved_session_cookies_on_different_domain"
"test_saved_session_cookie_pool"
];
meta = {