Skip to content
/ nixpkgs Public
forked from NixOS/nixpkgs

Commit

Permalink
Merge pull request NixOS#175522 from helsinki-systems/fix/pyfuse3-broken
Browse files Browse the repository at this point in the history
python3.pkgs.pyfuse3: fix broken mark
  • Loading branch information
dasJ authored May 31, 2022
2 parents cac45c6 + 51b506f commit ef2959e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/pyfuse3/default.nix
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -9,6 +9,8 @@ buildPythonPackage rec {
sha256 = "22d146dac59a8429115e9a93317975ea54b35e0278044a94d3fac5b4ad5f7e33";
};

disabled = pythonAtLeast "3.10";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ fuse3 ];
Expand All @@ -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;
Expand Down

0 comments on commit ef2959e

Please sign in to comment.