e899b57c8a
Recent changes in the Hetzner Robot API have removed a few obsolete fields which version 0.8.2 was still referencing and which is now fixed in version 0.8.3. Due to a misunderstanding on my side I haven't updated to version 0.8.3 in nixpkgs yet, which resulted in this delay. This fixes the NixOps Hetzner backend. Signed-off-by: aszlig <aszlig@nix.build>
24 lines
527 B
Nix
24 lines
527 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hetzner";
|
|
version = "0.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "hetzner";
|
|
owner = "aszlig";
|
|
rev = "v${version}";
|
|
sha256 = "0nhm7j2y4rgmrl0c1rklg982qllp7fky34dchqwd4czbsdnv9j7a";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/RedMoonStudios/hetzner";
|
|
description = "High-level Python API for accessing the Hetzner robot";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ aszlig ];
|
|
};
|
|
}
|