Merge pull request #302806 from azuwis/moto

python311Packages.moto: 5.0.3 -> 5.0.5; python311Packages.py-partiql-parser: 0.5.1 -> 0.5.4
This commit is contained in:
OTABI Tomoya
2024-04-11 00:13:24 +09:00
committed by GitHub
2 changed files with 12 additions and 8 deletions
@@ -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
@@ -3,13 +3,13 @@
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, setuptools
, hatchling
, sure
}:
buildPythonPackage rec {
pname = "py-partiql-parser";
version = "0.5.1";
version = "0.5.4";
pyproject = true;
disabled = pythonOlder "3.7";
@@ -18,11 +18,11 @@ buildPythonPackage rec {
owner = "getmoto";
repo = "py-partiql-parser";
rev = "refs/tags/${version}";
hash = "sha256-BPap4f9ro269K50qpVlTiEPNyyMCvBHCr2obuSfuNos=";
hash = "sha256-BSqc3xibStb3J6Rua4dDp/eRD5/ns/dU1vGa4vL1Cyo=";
};
nativeBuildInputs = [
setuptools
build-system = [
hatchling
];
nativeCheckInputs = [