Unverified Commit b2b4c762 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #231781 from r-ryantm/auto-update/python310Packages.llfuse

python310Packages.llfuse: 1.4.2 -> 1.4.3
parents aa3be4c3 5c75a4ef
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -8,23 +8,26 @@
, pkg-config
, pytestCheckHook
, python
, setuptools
, which
}:

buildPythonPackage rec {
  pname = "llfuse";
  version = "1.4.2";
  version = "1.4.3";

  format = "pyproject";

  disabled = pythonOlder "3.5";

  src = fetchFromGitHub {
    owner = "python-llfuse";
    repo = "python-llfuse";
    rev = "release-${version}";
    hash = "sha256-TnZnv439fLvg0WM96yx0dPSSz8Mrae6GDC9LiLFrgQ8=";
    rev = "refs/tags/release-${version}";
    hash = "sha256-37l6HrAKrXtEhlWTIdlw3L6wCGeOA7IW/aaJn3wf4QY=";
  };

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

  buildInputs = [ fuse ];

@@ -48,6 +51,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python bindings for the low-level FUSE API";
    homepage = "https://github.com/python-llfuse/python-llfuse";
    changelog = "https://github.com/python-llfuse/python-llfuse/raw/release-${version}/Changes.rst";
    license = licenses.lgpl2Plus;
    platforms = platforms.unix;
    maintainers = with maintainers; [ bjornfor dotlambda ];