mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
swh-fuse: init at 1.0.5
This commit is contained in:
parent
54e03461ae
commit
998376f9b7
35
pkgs/software-heritage/swh-fuse.nix
Normal file
35
pkgs/software-heritage/swh-fuse.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user