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
@@ -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 = {