pythonPackages: add pyrax

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2014-05-07 04:11:54 -05:00
parent fcc3ae1d84
commit 23d023008b
1 changed files with 17 additions and 1 deletions

View File

@ -5759,7 +5759,6 @@ rec {
};
};
pyopengl =
let version = "3.0.2";
in
@ -5808,6 +5807,23 @@ rec {
propagatedBuildInputs = [ cssselect lxml ];
};
pyrax = buildPythonPackage rec {
name = "pyrax-1.7.3";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/pyrax/${name}.tar.gz";
sha256 = "1br2kspw0sn7xgkk7z93h72s2v3qm88jvi4213zgz90jhzjj42bv";
};
meta = {
homepage = "https://github.com/rackspace/pyrax";
license = "MIT";
description = "Python API to interface with Rackspace";
};
doCheck = false;
};
pyreport = buildPythonPackage (rec {
name = "pyreport-0.3.4c";