Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, buildPythonPackage, fetchPypi, pkgconfig, fuse }:
2
3buildPythonPackage rec {
4 pname = "fuse-python";
5 version = "1.0.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "cbaa21c8f0a440302d1ba9fd57a80cf9ff227e5a3820708a8ba8450db883cc05";
10 };
11
12 buildInputs = [ fuse ];
13 nativeBuildInputs = [ pkgconfig ];
14
15 # no tests in the Pypi archive
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 description = "Python bindings for FUSE";
20 homepage = "https://github.com/libfuse/python-fuse";
21 license = licenses.lgpl21;
22 maintainers = with maintainers; [ psyanticy ];
23 };
24}