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-01-21 07:02:41 +00:00
|
|
|
version = "1.0.1";
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-21 07:02:41 +00:00
|
|
|
sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|