python311Packages.moto: 5.0.3 -> 5.0.5

https://github.com/getmoto/moto/blob/5.0.5/CHANGELOG.md
This commit is contained in:
Zhong Jianxin 2024-04-09 20:42:49 +08:00
parent e7175bb727
commit f0eac23a1c
1 changed files with 7 additions and 3 deletions

View File

@ -18,6 +18,7 @@
, xmltodict
# optional-dependencies
, antlr4-python3-runtime
, aws-xray-sdk
, cfn-lint
, flask
@ -25,6 +26,7 @@
, docker
, graphql-core
, joserfc
, jsonpath-ng
, jsondiff
, multipart
, openapi-spec-validator
@ -41,17 +43,17 @@
buildPythonPackage rec {
pname = "moto";
version = "5.0.3";
version = "5.0.5";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-BwrC7fia167ihTRIHOaOLzRMimqP7+xUJ+6g1Zm/29s=";
hash = "sha256-Lqyi33dY9oaN9CC/ByXNC5PZhwlgbx+4sjQ7W9yCLZE=";
};
nativeBuildInputs = [
build-system = [
setuptools
];
@ -70,6 +72,7 @@ buildPythonPackage rec {
passthru.optional-dependencies = {
# non-exhaustive list of extras, that was cobbled together for testing
all = [
antlr4-python3-runtime
aws-xray-sdk
cfn-lint
docker
@ -78,6 +81,7 @@ buildPythonPackage rec {
graphql-core
joserfc
jsondiff
jsonpath-ng
multipart
openapi-spec-validator
pyparsing