3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages: Add new hetzner module, v0.2.1.

This is for accessing the Hetzner Robot API (an IPMI-like interface).

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2013-07-09 11:28:39 +02:00
parent 3e70cde4de
commit f728650731
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -2125,6 +2125,29 @@ pythonPackages = python.modules // rec {
};
};
hetzner = buildPythonPackage rec {
name = "hetzner-${version}";
version = "0.2.1";
src = fetchurl {
url = "https://github.com/RedMoonStudios/hetzner/archive/"
+ "v${version}.tar.gz";
sha256 = "0im7frzmbd1v89251ci8ahrjhw578nmksqlfcdakim0jr23si4wh";
};
# not there yet, but coming soon.
doCheck = false;
meta = {
homepage = "https://github.com/RedMoonStudios/hetzner";
description = "High-level Python API for accessing the Hetzner robot";
license = stdenv.lib.licenses.bsd3;
maintainers = [ stdenv.lib.maintainers.aszlig ];
};
};
html5lib = buildPythonPackage (rec {
name = "html5lib-0.95";