25 lines
398 B
Nix
25 lines
398 B
Nix
#
|
|
# oxfs faster sshfs (asynchronous ops)
|
|
#
|
|
# vim: et:ts=2:sw=2:
|
|
#
|
|
{
|
|
fetchPypi,
|
|
lib,
|
|
python3Packages,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "oxfs";
|
|
version = "0.5.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-iHtUfrf91vr5UOn5vr6679OsGh5xipgbCeCRxluf9Pc=";
|
|
};
|
|
|
|
dependencies = with python3Packages; [
|
|
fusepy
|
|
paramiko
|
|
xxhash
|
|
];
|
|
}
|