1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "hetzner";
9 version = "0.8.3";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 repo = "hetzner";
14 owner = "aszlig";
15 rev = "v${version}";
16 sha256 = "0nhm7j2y4rgmrl0c1rklg982qllp7fky34dchqwd4czbsdnv9j7a";
17 };
18
19 meta = with lib; {
20 homepage = "https://github.com/RedMoonStudios/hetzner";
21 description = "High-level Python API for accessing the Hetzner robot";
22 mainProgram = "hetznerctl";
23 license = licenses.bsd3;
24 maintainers = with maintainers; [ aszlig ];
25 };
26}