2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fuse-python";
|
2021-06-18 22:47:17 +01:00
|
|
|
version = "1.0.4";
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-18 22:47:17 +01:00
|
|
|
sha256 = "b9a69c38b3909ffd35d77cb1a73ebfdc3a103a6d4cdd20c86c70ed1141771580";
|
2018-09-14 18:47:18 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ fuse ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-08-25 03:07:09 +01:00
|
|
|
|
2021-01-22 10:35:26 +00:00
|
|
|
# no tests implemented
|
2018-09-14 18:47:18 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-22 10:35:26 +00:00
|
|
|
pythonImportsCheck = [ "fuse" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-09-14 18:47:18 +01:00
|
|
|
description = "Python bindings for FUSE";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/libfuse/python-fuse";
|
2018-09-14 18:47:18 +01:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|