tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.moto: 4.1.3 -> 4.2.2
Martin Weinelt
2 years ago
8eed4800
a77006e1
+14
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
moto
default.nix
+14
-3
pkgs/development/python-modules/moto/default.nix
···
33
33
34
34
# tests
35
35
, freezegun
36
36
+
, py-partiql-parser
36
37
, pytestCheckHook
37
38
, pytest-xdist
38
39
, sure
···
40
41
41
42
buildPythonPackage rec {
42
43
pname = "moto";
43
43
-
version = "4.1.3";
44
44
+
version = "4.2.2";
44
45
format = "pyproject";
45
46
46
47
disabled = pythonOlder "3.6";
47
48
48
49
src = fetchPypi {
49
50
inherit pname version;
50
50
-
hash = "sha256-yCAMyqlEDC6dqgvV4L12inGdtaLILqjXgvDj+gmjxeI=";
51
51
+
hash = "sha256-7jTEw/U5ANlTGAlGkgyduhJ6SD4u1A5tv5PUri52Dnw=";
51
52
};
52
53
53
54
nativeBuildInputs = [
···
83
84
84
85
nativeCheckInputs = [
85
86
freezegun
87
87
+
py-partiql-parser
86
88
pytestCheckHook
87
89
sure
88
90
];
···
105
107
"--deselect=tests/test_iotdata/test_iotdata.py::test_basic"
106
108
"--deselect=tests/test_iotdata/test_iotdata.py::test_delete_field_from_device_shadow"
107
109
"--deselect=tests/test_iotdata/test_iotdata.py::test_publish"
110
110
+
"--deselect=tests/test_moto_api/recorder/test_recorder.py::TestRecorder::test_s3_upload_data"
111
111
+
"--deselect=tests/test_moto_api/recorder/test_recorder.py::TestRecorder::test_s3_upload_file_using_requests"
112
112
+
"--deselect=tests/test_s3/test_multiple_accounts_server.py::TestAccountIdResolution::test_with_custom_request_header"
113
113
+
"--deselect=tests/test_s3/test_s3.py::test_presigned_put_url_with_approved_headers"
114
114
+
"--deselect=tests/test_s3/test_s3.py::test_presigned_put_url_with_custom_headers"
115
115
+
"--deselect=tests/test_s3/test_s3.py::test_put_chunked_with_v4_signature_in_body"
116
116
+
"--deselect=tests/test_s3/test_s3.py::test_upload_from_file_to_presigned_url"
108
117
"--deselect=tests/test_s3/test_server.py::test_s3_server_bucket_versioning"
109
109
-
"--deselect=tests/test_s3/test_multiple_accounts_server.py::TestAccountIdResolution::test_with_custom_request_header"
118
118
+
"--deselect=tests/test_s3/test_server.py::test_s3_server_post_cors_multiple_origins"
110
119
111
120
# Disable tests that require docker daemon
121
121
+
"--deselect=tests/test_core/test_docker.py::test_docker_is_running_and_available"
112
122
"--deselect=tests/test_events/test_events_lambdatriggers_integration.py::test_creating_bucket__invokes_lambda"
113
123
"--deselect=tests/test_s3/test_s3_lambda_integration.py::test_objectcreated_put__invokes_lambda"
124
124
+
"--deselect=tests/test_sqs/test_sqs_integration.py"
114
125
115
126
# json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
116
127
"--deselect=tests/test_cloudformation/test_cloudformation_stack_integration.py::test_lambda_function"