Skip to content

Commit

Permalink
Merge pull request #247571 from dotlambda/pyfuse3-3.3.0
Browse files Browse the repository at this point in the history
python310Packages.pyfuse3: 3.2.3 -> 3.3.0
  • Loading branch information
Mic92 authored Aug 10, 2023
2 parents f6f59fd + 912cc6b commit bf86e5a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/llfuse/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, cython
, cython_3
, fuse
, pkg-config
, pytestCheckHook
Expand All @@ -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 ];

Expand Down
14 changes: 8 additions & 6 deletions pkgs/development/python-modules/pyfuse3/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, cython
, cython_3
, pkg-config
, setuptools
, fuse3
, trio
, python
Expand All @@ -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 = ''
Expand All @@ -33,8 +34,9 @@ buildPythonPackage rec {
'';

nativeBuildInputs = [
cython
cython_3
pkg-config
setuptools
];

buildInputs = [ fuse3 ];
Expand Down

0 comments on commit bf86e5a

Please sign in to comment.