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

python310Packages.llfuse: 1.4.2 -> 1.4.3
This commit is contained in:
Mario Rodas 2023-05-14 14:56:36 -05:00 committed by GitHub
commit b2b4c762cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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