python312Packages.pyfuse3: 3.3.0 -> 3.4.0

Diff: https://github.com/libfuse/pyfuse3/compare/refs/tags/3.3.0...3.4.0

Changelog: https://github.com/libfuse/pyfuse3/blob/3.4.0/Changes.rst
This commit is contained in:
Robert Schütz 2024-08-28 18:32:44 -07:00
parent c819a6d5bb
commit da43f0a6af

View File

@ -16,33 +16,33 @@
buildPythonPackage rec {
pname = "pyfuse3";
version = "3.3.0";
version = "3.4.0";
pyproject = true;
disabled = pythonOlder "3.8";
format = "pyproject";
src = fetchFromGitHub {
owner = "libfuse";
repo = "pyfuse3";
rev = "refs/tags/${version}";
hash = "sha256-GLGuTFdTA16XnXKSBD7ET963a8xH9EG/JfPNu6/3DOg=";
hash = "sha256-J4xHiaV8GCtUQ9GJS8YRXpMsuzuwbtnzspvuIonHT24=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "'pkg-config'" "'$(command -v $PKG_CONFIG)'"
--replace-fail "'pkg-config'" "'$(command -v $PKG_CONFIG)'"
'';
nativeBuildInputs = [
build-system = [
cython
pkg-config
setuptools
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse3 ];
propagatedBuildInputs = [ trio ];
dependencies = [ trio ];
preBuild = ''
${python.pythonOnBuildForHost.interpreter} setup.py build_cython