summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/llfuse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/llfuse/default.nix')
-rw-r--r--pkgs/development/python-modules/llfuse/default.nix41
1 files changed, 26 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 5e1ce47bdc67..8e7028c94421 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, stdenv
-, buildPythonPackage
-, pythonOlder
-, fetchFromGitHub
-, cython
-, fuse
-, pkg-config
-, pytestCheckHook
-, python
-, setuptools
-, which
+{
+ lib,
+ stdenv,
+ buildPythonPackage,
+ pythonOlder,
+ fetchFromGitHub,
+ cython,
+ fuse,
+ pkg-config,
+ pytestCheckHook,
+ python,
+ setuptools,
+ which,
}:
buildPythonPackage rec {
@@ -27,7 +28,11 @@ buildPythonPackage rec {
hash = "sha256-6/iW5eHmX6ODVPLFkOo3bN9yW8ixqy2MHwQ2r9FA0iI=";
};
- nativeBuildInputs = [ cython pkg-config setuptools ];
+ nativeBuildInputs = [
+ cython
+ pkg-config
+ setuptools
+ ];
buildInputs = [ fuse ];
@@ -42,7 +47,10 @@ buildPythonPackage rec {
# On Darwin, the test requires macFUSE to be installed outside of Nix.
doCheck = !stdenv.isDarwin;
- nativeCheckInputs = [ pytestCheckHook which ];
+ nativeCheckInputs = [
+ pytestCheckHook
+ which
+ ];
disabledTests = [
"test_listdir" # accesses /usr/bin
@@ -54,6 +62,9 @@ buildPythonPackage rec {
changelog = "https://github.com/python-llfuse/python-llfuse/raw/release-${version}/Changes.rst";
license = licenses.lgpl2Plus;
platforms = platforms.unix;
- maintainers = with maintainers; [ bjornfor dotlambda ];
+ maintainers = with maintainers; [
+ bjornfor
+ dotlambda
+ ];
};
}