nixpkgs/pkgs/development/python-modules/llfuse/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

32 lines
804 B
Nix

{ stdenv, fetchurl, buildPythonPackage, pkgconfig, pytest, fuse, attr, which
, contextlib2
}:
buildPythonPackage rec {
pname = "llfuse";
version = "1.3.6";
src = fetchurl {
url = "mirror://pypi/l/llfuse/${pname}-${version}.tar.bz2";
sha256 = "1j9fzxpgmb4rxxyl9jcf84zvznhgi3hnh4hg5vb0qaslxkvng8ii";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse ];
checkInputs = [ pytest attr which ];
propagatedBuildInputs = [ contextlib2 ];
checkPhase = ''
py.test -k "not test_listdir"
'';
meta = with stdenv.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 ];
};
}