2020-04-24 23:36:52 +00:00
|
|
|
|
{ lib
|
2022-10-30 15:09:59 +00:00
|
|
|
|
, blinker
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, botocore
|
2022-10-30 15:09:59 +00:00
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, pytest-mock
|
|
|
|
|
, pytestCheckHook
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, python-dateutil
|
2022-10-30 15:09:59 +00:00
|
|
|
|
, pythonOlder
|
2020-04-24 23:36:52 +00:00
|
|
|
|
, requests
|
2022-10-30 15:09:59 +00:00
|
|
|
|
, typing-extensions
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "pynamodb";
|
2022-10-30 15:09:59 +00:00
|
|
|
|
version = "5.2.3";
|
|
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "pynamodb";
|
|
|
|
|
repo = "PynamoDB";
|
|
|
|
|
rev = "refs/tags/${version}";
|
|
|
|
|
sha256 = "sha256-3Si0BCMofr38OuXoX8Tj9n3ITv3rH5hNfDQZvZWk79o=";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
|
python-dateutil
|
|
|
|
|
botocore
|
|
|
|
|
] ++ lib.optionals (pythonOlder "3.8") [
|
|
|
|
|
typing-extensions
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
|
passthru.optional-dependencies = {
|
|
|
|
|
signal = [
|
|
|
|
|
blinker
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
|
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"
|
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
2022-10-30 15:09:59 +00:00
|
|
|
|
description = "Interface for Amazon’s DynamoDB";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
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;
|
2022-10-30 15:09:59 +00:00
|
|
|
|
maintainers = with maintainers; [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
}
|