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