2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
2018-09-14 19:47:18 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fuse-python";
|
2021-01-21 08:02:41 +01:00
|
|
|
version = "1.0.1";
|
2018-09-14 19:47:18 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-21 08:02:41 +01:00
|
|
|
sha256 = "da42d4f596a2e91602bcdf46cc51747df31c074a3ceb78bccc253c483a8a75fb";
|
2018-09-14 19:47:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ fuse ];
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-08-25 04:07:09 +02:00
|
|
|
|
2021-01-22 11:35:26 +01:00
|
|
|
# no tests implemented
|
2018-09-14 19:47:18 +02: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 19:47:18 +02:00
|
|
|
description = "Python bindings for FUSE";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/libfuse/python-fuse";
|
2018-09-14 19:47:18 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ psyanticy ];
|
|
|
|
};
|
|
|
|
}
|