2022-08-10 10:33:00 +00:00
|
|
|
{ stdenv, lib, python3Packages, swh-core, swh-model, swh-web-client, ... }:
|
|
|
|
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "swh-fuse";
|
2025-03-25 01:49:48 +00:00
|
|
|
version = "1.1.0";
|
|
|
|
pyproject = true;
|
2022-08-10 10:33:00 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "swh.fuse";
|
2025-03-25 01:49:48 +00:00
|
|
|
hash = "sha256-pkTZiUm+Sun+7gBNWXJUHUXTmEIz5tjvfGcU4cUL9Xg=";
|
2022-08-10 10:33:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|