Merge pull request #68883 from B4dM4n/cheroot-darwin

cheroot: fix darwin sandbox build
This commit is contained in:
Daiderd Jordan 2019-09-20 22:01:15 +02:00 committed by GitHub
commit 463703c213
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,6 +34,9 @@ buildPythonPackage rec {
pytest -k 'not tls' ${lib.optionalString stdenv.isDarwin "--deselect=cheroot/test/test_ssl.py::test_http_over_https_error --deselect=cheroot/test/test_server.py::test_bind_addr_unix"}
'';
# Some of the tests use localhost networking.
__darwinAllowLocalNetworking = true;
meta = with lib; {
description = "High-performance, pure-Python HTTP";
homepage = https://github.com/cherrypy/cheroot;