Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 538 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "hetzner"; 8 version = "0.8.1"; 9 10 src = fetchFromGitHub { 11 repo = "hetzner"; 12 owner = "aszlig"; 13 rev = "v${version}"; 14 sha256 = "1xd1klvjskv0pg8ginih597jkk491a55b8dq80dsm61m5sbsx3vq"; 15 }; 16 17 meta = with stdenv.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 24}