Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 23 lines 537 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchFromGitHub 4}: 5 6buildPythonPackage rec { 7 pname = "hetzner"; 8 version = "0.8.2"; 9 10 src = fetchFromGitHub { 11 repo = "hetzner"; 12 owner = "aszlig"; 13 rev = "v${version}"; 14 sha256 = "152fklxff08s71v0b78yp5ajwpqyszm3sd7j0qsrwa2x9ik4968h"; 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}