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