blob: b4469d714dbc7aff5f7943fb1681eece7879b876 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
{
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 ];
};
}
|