mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 20:55:31 +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,
|
dill,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
moto,
|
moto,
|
||||||
poetry-core,
|
|
||||||
poetry-dynamic-versioning,
|
|
||||||
pytest-asyncio,
|
pytest-asyncio,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
setuptools,
|
||||||
|
setuptools-scm,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aioboto3";
|
pname = "aioboto3";
|
||||||
version = "13.4.0";
|
version = "14.2.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.8";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "terrycain";
|
owner = "terrycain";
|
||||||
repo = "aioboto3";
|
repo = "aioboto3";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-o3PynPW6nPvbBrsw+HU2fJheVRpCHCb0EnJdmseorsE=";
|
hash = "sha256-RzaMsJtGvC6IILgwj09kymw+Hv3gjyBf2PHBzYC9itE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
@ -34,8 +31,8 @@ buildPythonPackage rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
build-system = [
|
build-system = [
|
||||||
poetry-core
|
setuptools
|
||||||
poetry-dynamic-versioning
|
setuptools-scm
|
||||||
];
|
];
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
@ -58,6 +55,10 @@ buildPythonPackage rec {
|
||||||
++ moto.optional-dependencies.server
|
++ moto.optional-dependencies.server
|
||||||
++ lib.flatten (builtins.attrValues optional-dependencies);
|
++ lib.flatten (builtins.attrValues optional-dependencies);
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
"test_patches"
|
||||||
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [ "aioboto3" ];
|
pythonImportsCheck = [ "aioboto3" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue