Merge pull request #175522 from helsinki-systems/fix/pyfuse3-broken

python3.pkgs.pyfuse3: fix broken mark
main
Janne Heß 2 years ago committed by GitHub
commit ef2959e2d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/development/python-modules/pyfuse3/default.nix

@ -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;

Loading…
Cancel
Save