From 8886f798329eb16fbc5190697b8e17b35cc08e2a Mon Sep 17 00:00:00 2001 From: Konstantin Alekseev Date: Sat, 9 Jul 2022 11:34:39 +0300 Subject: [PATCH] python3Packages.uvloop: fix linux build --- pkgs/development/python-modules/uvloop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/uvloop/default.nix b/pkgs/development/python-modules/uvloop/default.nix index d89a26da9719..c3b637da0670 100644 --- a/pkgs/development/python-modules/uvloop/default.nix +++ b/pkgs/development/python-modules/uvloop/default.nix @@ -68,11 +68,11 @@ buildPythonPackage rec { # Work around "OSError: AF_UNIX path too long" # https://github.com/MagicStack/uvloop/issues/463 export TMPDIR="/tmp" + '' + '' # pyopenssl is not well supported by upstream # https://github.com/NixOS/nixpkgs/issues/175875 substituteInPlace tests/test_tcp.py \ --replace "from OpenSSL import SSL as openssl_ssl" "" - '' + '' # force using installed/compiled uvloop vs source by moving tests to temp dir export TEST_DIR=$(mktemp -d) cp -r tests $TEST_DIR