depot/third_party/nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

28 lines
672 B
Nix

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