70 lines
1.5 KiB
Nix
70 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
replaceVars,
|
|
setuptools,
|
|
rich,
|
|
rclone,
|
|
writableTmpDirAsHomeHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rclone-python";
|
|
version = "0.1.23";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Johannes11833";
|
|
repo = "rclone_python";
|
|
tag = "v${version}";
|
|
hash = "sha256-vvsiXS3uI0TcL+X8+75BQmycrF+EGIgQE1dmGef35rI=";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./hardcode-rclone-path.patch {
|
|
rclone = lib.getExe rclone;
|
|
})
|
|
];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
rich
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
writableTmpDirAsHomeHook
|
|
];
|
|
|
|
preCheck = ''
|
|
# Unlike upstream we don't actually run an S3 server for testing.
|
|
# See https://github.com/Johannes11833/rclone_python/blob/master/launch_test_server.sh
|
|
mkdir -p "$HOME/.config/rclone"
|
|
cat > "$HOME/.config/rclone/rclone.conf" <<EOF
|
|
[test_server_s3]
|
|
type = combine
|
|
upstreams = "testdir=$(mktemp -d)"
|
|
EOF
|
|
'';
|
|
|
|
disabledTestPaths = [
|
|
# test requires a remote that supports public links
|
|
"tests/test_link.py"
|
|
# test looks up latest version on rclone.org
|
|
"tests/test_version.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "rclone_python" ];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/Johannes11833/rclone_python/releases/tag/${src.tag}";
|
|
description = "Python wrapper for rclone";
|
|
homepage = "https://github.com/Johannes11833/rclone_python";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ CaptainJawZ ];
|
|
};
|
|
}
|