Commit 5c75a4ef authored by Mario Rodas's avatar Mario Rodas
Browse files

python310Packages.llfuse: use pyproject format

parent 4c4b84ae
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@
, pkg-config
, pytestCheckHook
, python
, setuptools
, which
}:

@@ -15,6 +16,8 @@ buildPythonPackage rec {
  pname = "llfuse";
  version = "1.4.3";

  format = "pyproject";

  disabled = pythonOlder "3.5";

  src = fetchFromGitHub {
@@ -24,7 +27,7 @@ buildPythonPackage rec {
    hash = "sha256-37l6HrAKrXtEhlWTIdlw3L6wCGeOA7IW/aaJn3wf4QY=";
  };

  nativeBuildInputs = [ cython pkg-config ];
  nativeBuildInputs = [ cython pkg-config setuptools ];

  buildInputs = [ fuse ];