python3Packages.aiofiles: skip failing test on darwin

This commit is contained in:
Sandro 2021-08-26 12:29:00 +02:00 committed by Sandro Jäckel
parent b40c1582d7
commit 43dfcd24e2
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -1,4 +1,5 @@
{ lib
{ stdenv
, lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
@ -30,6 +31,10 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals stdenv.isDarwin [
"test_sendfile_file"
];
pythonImportsCheck = [ "aiofiles" ];
meta = {