python310Packages.llfuse: use pyproject format

This commit is contained in:
Mario Rodas 2023-05-14 04:20:00 +00:00
parent 4c4b84aeaa
commit 5c75a4ef81

View File

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