Merge pull request #174997 from risicle/ris-aioftp-darwin-skip-pasv-test

python3Packages.aioftp: skip pasv-mode test on darwin
This commit is contained in:
Fabian Affolter 2022-05-28 21:36:57 +02:00 committed by GitHub
commit a9ebc81751
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, async-timeout
, buildPythonPackage
, fetchPypi
@ -32,6 +33,11 @@ buildPythonPackage rec {
trustme
];
disabledTests = lib.optionals stdenv.isDarwin [
# uses 127.0.0.2, which macos doesn't like
"test_pasv_connection_pasv_forced_response_address"
];
pythonImportsCheck = [
"aioftp"
];