nixos-config/pkgs/software-heritage/swh-fuse.nix

36 lines
669 B
Nix
Raw Permalink Normal View History

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";
2023-08-18 09:21:49 +00:00
version = "1.0.6";
2022-08-10 10:33:00 +00:00
src = fetchPypi {
inherit version;
pname = "swh.fuse";
2023-08-18 09:21:49 +00:00
sha256 = "sha256-b1k4XJxaSGrdqQnKnu6EAaZoEVkdZqjt0vd6k+q+H3k=";
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;
};
}