Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / fuse-python / default.nix
blob14f2cb584ea8e99fdc7012ef4e833e82d6158a2c
1 { lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
3 buildPythonPackage rec {
4   pname = "fuse-python";
5   version = "1.0.1";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
10   };
12   buildInputs = [ fuse ];
13   nativeBuildInputs = [ pkg-config ];
15   # no tests implemented
16   doCheck = false;
18   pythonImportsCheck = [ "fuse" ];
20   meta = with lib; {
21     description = "Python bindings for FUSE";
22     homepage = "https://github.com/libfuse/python-fuse";
23     license = licenses.lgpl21;
24     maintainers = with maintainers; [ psyanticy ];
25   };