1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

python312Packages.pulumi-hcloud: init at 1.20.4 (#346917)

This commit is contained in:
OTABI Tomoya 2024-10-09 09:57:04 +09:00 committed by GitHub
commit ac7fa8d450
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 62 additions and 0 deletions

View file

@ -905,6 +905,18 @@
githubId = 217050;
name = "Albert Chae";
};
albertodvp = {
email = "alberto.fanton@protonmail.com";
github = "albertodvp";
githubId = 16022854;
matrix = "@albertodvp:matrix.org";
name = "Alberto Fanton";
keys = [
{
fingerprint = "63FD 3A4F 4832 946C B808 8E3C C852 4052 69E7 A087";
}
];
};
aldoborrero = {
email = "aldoborrero+nixos@pm.me";
github = "aldoborrero";

View file

@ -0,0 +1,48 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
parver,
pulumi,
pythonOlder,
semver,
setuptools,
}:
buildPythonPackage rec {
pname = "pulumi-hcloud";
version = "1.20.4";
pyproject = true;
build-system = [ setuptools ];
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "pulumi";
repo = "pulumi-hcloud";
rev = "refs/tags/v${version}";
hash = "sha256-m9MRXDTSC0K1raoH9gKPuxdwvUEnZ/ulp32xlY1Hsdo=";
};
sourceRoot = "${src.name}/sdk/python";
# The upstream repository does not contain tests
doCheck = false;
dependencies = [
parver
pulumi
semver
];
pythonImportsCheck = [ "pulumi_hcloud" ];
meta = with lib; {
description = "Pulumi python hetzner web services provider";
homepage = "https://github.com/pulumi/pulumi-hcloud";
changelog = "https://github.com/pulumi/pulumi-hcloud/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ albertodvp ];
};
}

View file

@ -1412,6 +1412,8 @@ self: super: with self; {
pulumi-command = pkgs.pulumiPackages.pulumi-command.sdks.python;
pulumi-hcloud = callPackage ../development/python-modules/pulumi-hcloud { };
pulumi-random = pkgs.pulumiPackages.pulumi-random.sdks.python;
backcall = callPackage ../development/python-modules/backcall { };