swh-fuse: init at 1.0.5

This commit is contained in:
Gabriel Arazas 2022-08-10 18:33:00 +08:00
parent 54e03461ae
commit 998376f9b7

View File

@ -0,0 +1,35 @@
{ stdenv, lib, python3Packages, swh-core, swh-model, swh-web-client, ... }:
with python3Packages;
buildPythonPackage rec {
pname = "swh-fuse";
version = "1.0.5";
src = fetchPypi {
inherit version;
pname = "swh.fuse";
sha256 = "sha256-k1h/J47rTsqsB/oW3bptFmdyD5PUGkL3MxM9BnrR3Eo";
};
doCheck = false;
propagatedBuildInputs = [
pyyaml
aiosqlite
psutil
pyfuse3
python-daemon
requests
setuptools-scm
swh-core
swh-web-client
swh-model
];
meta = with lib; {
description = "Software Heritage filesystem";
homepage = "https://www.softwareheritage.org/";
license = licenses.gpl3Only;
};
}