forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchFromGitHub
|
|
, contextlib2
|
|
, cython
|
|
, fuse
|
|
, pkg-config
|
|
, pytestCheckHook
|
|
, python
|
|
, which
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "llfuse";
|
|
version = "1.4.2";
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "python-llfuse";
|
|
repo = "python-llfuse";
|
|
rev = "release-${version}";
|
|
hash = "sha256-TnZnv439fLvg0WM96yx0dPSSz8Mrae6GDC9LiLFrgQ8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cython pkg-config ];
|
|
|
|
buildInputs = [ fuse ];
|
|
|
|
propagatedBuildInputs = [ contextlib2 ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace setup.py \
|
|
--replace "'pkg-config'" "'${stdenv.cc.targetPrefix}pkg-config'"
|
|
'';
|
|
|
|
preBuild = ''
|
|
${python.pythonForBuild.interpreter} setup.py build_cython
|
|
'';
|
|
|
|
# On Darwin, the test requires macFUSE to be installed outside of Nix.
|
|
doCheck = !stdenv.isDarwin;
|
|
nativeCheckInputs = [ pytestCheckHook which ];
|
|
|
|
disabledTests = [
|
|
"test_listdir" # accesses /usr/bin
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python bindings for the low-level FUSE API";
|
|
homepage = "https://github.com/python-llfuse/python-llfuse";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ bjornfor dotlambda ];
|
|
};
|
|
}
|