2022-05-29 11:10:09 +02:00
|
|
|
{ stdenv, lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fuse-python";
|
2024-01-14 10:30:54 +00:00
|
|
|
version = "1.0.7";
|
2023-12-07 16:53:02 +13:00
|
|
|
format = "setuptools";
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2024-01-14 10:30:54 +00:00
|
|
|
hash = "sha256-MhiAY2UkCM1HKuu2+S0135LIu0IAk3H4yJJ7s35r3Rs=";
|
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; {
|
2022-05-29 11:10:09 +02:00
|
|
|
broken = stdenv.isDarwin;
|
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 ];
|
|
|
|
};
|
|
|
|
}
|