python3Packages.stackit-resourcemanager: init at 0.8.0
STACKIT Resource Manager API client for Python https://github.com/stackitcloud/stackit-sdk-python
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
nix-update-script,
|
||||
pydantic,
|
||||
python-dateutil,
|
||||
requests,
|
||||
stackit-core,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "stackit-resourcemanager";
|
||||
version = "0.8.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "stackit_resourcemanager";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-9EVCvqtBMIV/Wn9GXPAt7+72V732PBvusxAvC6PAA/4=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
pydantic
|
||||
python-dateutil
|
||||
requests
|
||||
stackit-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "stackit.resourcemanager" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "STACKIT Resource Manager API client for Python";
|
||||
homepage = "https://github.com/stackitcloud/stackit-sdk-python";
|
||||
changelog = "https://github.com/stackitcloud/stackit-sdk-python/blob/services/resourcemanager/v${finalAttrs.version}/services/resourcemanager/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
@@ -19069,6 +19069,8 @@ self: super: with self; {
|
||||
|
||||
stackit-objectstorage = callPackage ../development/python-modules/stackit-objectstorage { };
|
||||
|
||||
stackit-resourcemanager = callPackage ../development/python-modules/stackit-resourcemanager { };
|
||||
|
||||
stackprinter = callPackage ../development/python-modules/stackprinter { };
|
||||
|
||||
stamina = callPackage ../development/python-modules/stamina { };
|
||||
|
||||
Reference in New Issue
Block a user