depot/third_party/nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

35 lines
698 B
Nix

{
stdenv,
lib,
buildPythonPackage,
fetchPypi,
pkg-config,
fuse,
}:
buildPythonPackage rec {
pname = "fuse-python";
version = "1.0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-MhiAY2UkCM1HKuu2+S0135LIu0IAk3H4yJJ7s35r3Rs=";
};
buildInputs = [ fuse ];
nativeBuildInputs = [ pkg-config ];
# no tests implemented
doCheck = false;
pythonImportsCheck = [ "fuse" ];
meta = with lib; {
broken = stdenv.hostPlatform.isDarwin;
description = "Python bindings for FUSE";
homepage = "https://github.com/libfuse/python-fuse";
license = licenses.lgpl21;
maintainers = with maintainers; [ psyanticy ];
};
}