ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / fuse-python / default.nix
blob22fbcce40e5a31179dcb126cfabb3c145b14cb34
1 { stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
3 buildPythonPackage rec {
4   pname = "fuse-python";
5   version = "1.0.5";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-dOX/szaCu6mlrypaBI9Ht+e0ZOv4QpG/WiWL+60Do6o=";
10   };
12   buildInputs = [ fuse ];
13   nativeBuildInputs = [ pkg-config ];
15   # no tests implemented
16   doCheck = false;
18   pythonImportsCheck = [ "fuse" ];
20   meta = with lib; {
21     broken = stdenv.isDarwin;
22     description = "Python bindings for FUSE";
23     homepage = "https://github.com/libfuse/python-fuse";
24     license = licenses.lgpl21;
25     maintainers = with maintainers; [ psyanticy ];
26   };