2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, pkg-config, fuse }:
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fuse-python";
|
2019-10-24 07:47:31 +01:00
|
|
|
version = "1.0.0";
|
2018-09-14 18:47:18 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-24 07:47:31 +01:00
|
|
|
sha256 = "cbaa21c8f0a440302d1ba9fd57a80cf9ff227e5a3820708a8ba8450db883cc05";
|
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
|
|
|
|
2018-09-14 18:47:18 +01:00
|
|
|
# no tests in the Pypi archive
|
|
|
|
doCheck = false;
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|