mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
python313Packages.aioboto3: 13.4.0 -> 14.2.0
Diff: https://github.com/terrycain/aioboto3/compare/refs/tags/v13.4.0...refs/tags/v14.2.0 Changelog: https://github.com/terrycain/aioboto3/blob/refs/tags/v14.2.0/CHANGELOG.rst
This commit is contained in:
parent
f797c94aea
commit
008b6ffbc7
1 changed files with 10 additions and 9 deletions
|
@ -8,25 +8,22 @@
|
|||
dill,
|
||||
fetchFromGitHub,
|
||||
moto,
|
||||
poetry-core,
|
||||
poetry-dynamic-versioning,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioboto3";
|
||||
version = "13.4.0";
|
||||
version = "14.2.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "terrycain";
|
||||
repo = "aioboto3";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-o3PynPW6nPvbBrsw+HU2fJheVRpCHCb0EnJdmseorsE=";
|
||||
hash = "sha256-RzaMsJtGvC6IILgwj09kymw+Hv3gjyBf2PHBzYC9itE=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [
|
||||
|
@ -34,8 +31,8 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
poetry-dynamic-versioning
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
|
@ -58,6 +55,10 @@ buildPythonPackage rec {
|
|||
++ moto.optional-dependencies.server
|
||||
++ lib.flatten (builtins.attrValues optional-dependencies);
|
||||
|
||||
disabledTests = [
|
||||
"test_patches"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "aioboto3" ];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue