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

View File

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