Merge pull request #247571 from dotlambda/pyfuse3-3.3.0

python310Packages.pyfuse3: 3.2.3 -> 3.3.0
This commit is contained in:
Jörg Thalheim 2023-08-10 06:52:12 +01:00 committed by GitHub
commit bf86e5ad24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 11 deletions

View File

@ -3,7 +3,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, cython
, cython_3
, fuse
, pkg-config
, pytestCheckHook
@ -14,20 +14,20 @@
buildPythonPackage rec {
pname = "llfuse";
version = "1.4.4";
version = "1.5.0";
format = "pyproject";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "python-llfuse";
repo = "python-llfuse";
rev = "refs/tags/release-${version}";
hash = "sha256-qsnmhnZsK0j9dPhXT9mymQTzVHmmGnB5vgONatxDLIo=";
hash = "sha256-6/iW5eHmX6ODVPLFkOo3bN9yW8ixqy2MHwQ2r9FA0iI=";
};
nativeBuildInputs = [ cython pkg-config setuptools ];
nativeBuildInputs = [ cython_3 pkg-config setuptools ];
buildInputs = [ fuse ];

View File

@ -2,8 +2,9 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, cython
, cython_3
, pkg-config
, setuptools
, fuse3
, trio
, python
@ -14,17 +15,17 @@
buildPythonPackage rec {
pname = "pyfuse3";
version = "3.2.3";
version = "3.3.0";
disabled = pythonOlder "3.5";
disabled = pythonOlder "3.8";
format = "setuptools";
format = "pyproject";
src = fetchFromGitHub {
owner = "libfuse";
repo = "pyfuse3";
rev = "refs/tags/${version}";
hash = "sha256-2YrVapCojcFRaljqNeWPMWz3hEgSutKPy2u8FXp0fME=";
hash = "sha256-GLGuTFdTA16XnXKSBD7ET963a8xH9EG/JfPNu6/3DOg=";
};
postPatch = ''
@ -33,8 +34,9 @@ buildPythonPackage rec {
'';
nativeBuildInputs = [
cython
cython_3
pkg-config
setuptools
];
buildInputs = [ fuse3 ];