python3Packages.stackit-objectstorage: init at 1.4.0

STACKIT Object Storage API client for Python

https://github.com/stackitcloud/stackit-sdk-python
This commit is contained in:
Fabian Affolter
2026-06-26 15:10:36 +02:00
parent b8cfd14d25
commit 904287afeb
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
nix-update-script,
pydantic,
python-dateutil,
requests,
stackit-core,
}:
buildPythonPackage (finalAttrs: {
pname = "stackit-objectstorage";
version = "1.4.0";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
pname = "stackit_objectstorage";
inherit (finalAttrs) version;
hash = "sha256-SjgStN4QKxmfBhcGqAKQn55TrpsIWHadW9cg+BTIvb4=";
};
build-system = [ hatchling ];
dependencies = [
pydantic
python-dateutil
requests
stackit-core
];
pythonImportsCheck = [ "stackit.objectstorage" ];
# Module has no tests
doCheck = false;
passthru.updateScript = nix-update-script { };
meta = {
description = "STACKIT Object Storage API client for Python";
homepage = "https://github.com/stackitcloud/stackit-sdk-python";
changelog = "https://github.com/stackitcloud/stackit-sdk-python/blob/services/objectstorage/v${finalAttrs.version}/services/objectstorage/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
})
+2
View File
@@ -19067,6 +19067,8 @@ self: super: with self; {
stackit-iaas = callPackage ../development/python-modules/stackit-iaas { };
stackit-objectstorage = callPackage ../development/python-modules/stackit-objectstorage { };
stackprinter = callPackage ../development/python-modules/stackprinter { };
stamina = callPackage ../development/python-modules/stamina { };