python3Packages.prowlpy: remove httpx workaround

This commit is contained in:
Robert Schütz
2026-06-10 13:18:41 -07:00
parent 4071736d8c
commit 902d6dd64b
@@ -43,6 +43,7 @@ buildPythonPackage (finalAttrs: {
pythonImportsCheck = [ "prowlpy" ];
nativeCheckInputs = [
cacert
pytest-asyncio
pytest-cov-stub
pytestCheckHook
@@ -50,12 +51,6 @@ buildPythonPackage (finalAttrs: {
]
++ lib.concatAttrValues finalAttrs.passthru.optional-dependencies;
preCheck = ''
# Without this pyreqwest fails with
# unexpected error: No CA certificates were loaded from the system
export SSL_CERT_FILE="${cacert}/etc/ssl/certs/ca-bundle.crt"
'';
# tests fail without this
pytestFlags = [ "-v" ];