home-assistant: 2025.1.1 -> 2025.1.2 (#372513)
[NixPkgs.git] / pkgs / development / python-modules / fuse-python / default.nix
blob35eab496d91b1a433e9bff36a3025a8386558426
2   stdenv,
3   lib,
4   buildPythonPackage,
5   fetchPypi,
6   pkg-config,
7   fuse,
8 }:
10 buildPythonPackage rec {
11   pname = "fuse-python";
12   version = "1.0.7";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-MhiAY2UkCM1HKuu2+S0135LIu0IAk3H4yJJ7s35r3Rs=";
18   };
20   buildInputs = [ fuse ];
21   nativeBuildInputs = [ pkg-config ];
23   # no tests implemented
24   doCheck = false;
26   pythonImportsCheck = [ "fuse" ];
28   meta = with lib; {
29     broken = stdenv.hostPlatform.isDarwin;
30     description = "Python bindings for FUSE";
31     homepage = "https://github.com/libfuse/python-fuse";
32     license = licenses.lgpl21;
33     maintainers = with maintainers; [ psyanticy ];
34   };