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