python3Packages.stackit-iaas: init at 1.4.0
STACKIT IaaS 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-iaas";
|
||||
version = "1.4.0";
|
||||
pyproject = true;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "stackit_iaas";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-k1I7I0QjUMfr79kSlIXEwqU59pSpw2oPjt+rqYYgV+o=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
pydantic
|
||||
python-dateutil
|
||||
requests
|
||||
stackit-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "stackit.iaas" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "STACKIT IaaS API client for Python";
|
||||
homepage = "https://github.com/stackitcloud/stackit-sdk-python";
|
||||
changelog = "https://github.com/stackitcloud/stackit-sdk-python/blob/services/iaas/v${finalAttrs.version}/services/iaas/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
})
|
||||
@@ -19065,6 +19065,8 @@ self: super: with self; {
|
||||
|
||||
stackit-core = callPackage ../development/python-modules/stackit-core { };
|
||||
|
||||
stackit-iaas = callPackage ../development/python-modules/stackit-iaas { };
|
||||
|
||||
stackprinter = callPackage ../development/python-modules/stackprinter { };
|
||||
|
||||
stamina = callPackage ../development/python-modules/stamina { };
|
||||
|
||||
Reference in New Issue
Block a user