nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
2021-01-25 18:31:47 +01:00

27 lines
624 B
Nix

{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
buildPythonPackage rec {
pname = "fuse-python";
version = "1.0.1";
src = fetchPypi {
inherit pname version;
sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
};
buildInputs = [ fuse ];
nativeBuildInputs = [ pkg-config ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "fuse" ];
meta = with lib; {
description = "Python bindings for FUSE";
homepage = "https://github.com/libfuse/python-fuse";
license = licenses.lgpl21;
maintainers = with maintainers; [ psyanticy ];
};
}