about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
blob: 14f2cb584ea8e99fdc7012ef4e833e82d6158a2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:

buildPythonPackage rec {
  pname = "fuse-python";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
  };

  buildInputs = [ fuse ];
  nativeBuildInputs = [ pkg-config ];

  # no tests implemented
  doCheck = false;

  pythonImportsCheck = [ "fuse" ];

  meta = with lib; {
    description = "Python bindings for FUSE";
    homepage = "https://github.com/libfuse/python-fuse";
    license = licenses.lgpl21;
    maintainers = with maintainers; [ psyanticy ];
  };
}