Merge pull request #198182 from r-ryantm/auto-update/python3.10-pynamodb

python310Packages.pynamodb: 5.2.1 -> 5.2.3
This commit is contained in:
Fabian Affolter 2022-10-28 09:40:37 +02:00 committed by GitHub
commit bcee2c2993
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,33 +1,72 @@
{ lib
, buildPythonPackage
, blinker
, botocore
, fetchPypi
, mock
, mypy
, buildPythonPackage
, fetchFromGitHub
, pytest-mock
, pytestCheckHook
, python-dateutil
, pytest
, pythonOlder
, requests
, typing-extensions
}:
buildPythonPackage rec {
pname = "pynamodb";
version = "5.2.1";
version = "5.2.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-x6nFV7UjZLwJJX7dADeO68dSWLvaoP4FD8ziNWFJ+Qo=";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pynamodb";
repo = "PynamoDB";
rev = "refs/tags/${version}";
sha256 = "sha256-3Si0BCMofr38OuXoX8Tj9n3ITv3rH5hNfDQZvZWk79o=";
};
propagatedBuildInputs = [ python-dateutil botocore ];
checkInputs = [ requests mock pytest mypy ];
propagatedBuildInputs = [
python-dateutil
botocore
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
];
passthru.optional-dependencies = {
signal = [
blinker
];
};
checkInputs = [
pytest-mock
pytestCheckHook
] ++ passthru.optional-dependencies.signal;
pythonImportsCheck = [
"pynamodb"
];
disabledTests = [
# Tests requires credentials or network access
"test_binary_attribute_update"
"test_binary_set_attribute_update"
"test_connection_integration"
"test_make_api_call__happy_path"
"test_model_integration"
"test_sign_request"
"test_table_integration"
"test_transact"
];
meta = with lib; {
description = "A Pythonic interface for Amazons DynamoDB that supports Python 2 and 3.";
description = "Interface for Amazons DynamoDB";
longDescription = ''
DynamoDB is a great NoSQL service provided by Amazon, but the API is
verbose. PynamoDB presents you with a simple, elegant API.
'';
homepage = "http://jlafon.io/pynamodb.html";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}