depot/third_party/nixpkgs/pkgs/development/python-modules/fuse-python/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

26 lines
624 B
Nix

{ 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 ];
};
}