python3.pkgs.pyfuse3: fix broken mark

This commit is contained in:
ajs124 2022-05-30 23:06:15 +02:00
parent a85b3b8c74
commit 51b506f8de

View File

@ -1,4 +1,4 @@
{ stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse3, trio, pytestCheckHook, pytest-trio, which }:
{ stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse3, trio, pytestCheckHook, pytest-trio, which, pythonAtLeast }:
buildPythonPackage rec {
pname = "pyfuse3";
@ -9,6 +9,8 @@ buildPythonPackage rec {
sha256 = "22d146dac59a8429115e9a93317975ea54b35e0278044a94d3fac5b4ad5f7e33";
};
disabled = pythonAtLeast "3.10";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse3 ];
@ -26,7 +28,6 @@ buildPythonPackage rec {
disabledTests = [ "test_listdir" ];
meta = with lib; {
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "Python 3 bindings for libfuse 3 with async I/O support";
homepage = "https://github.com/libfuse/pyfuse3";
license = licenses.lgpl2Plus;