* Added novaclient.
svn path=/nixpkgs/trunk/; revision=27407
This commit is contained in:
parent
6abaaa2728
commit
2a276fe96e
|
@ -0,0 +1,20 @@
|
||||||
|
{ fetchurl, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonPackage rec {
|
||||||
|
name = "novaclient-2.4.3";
|
||||||
|
namePrefix = "";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://pypi.python.org/packages/source/p/python-novaclient/python-${name}.tar.gz";
|
||||||
|
md5 = "c4be4adf371d1a84ce1581af365a53d0";
|
||||||
|
};
|
||||||
|
|
||||||
|
pythonPath = [ pythonPackages.prettytable pythonPackages.argparse pythonPackages.httplib2 pythonPackages.ssl ];
|
||||||
|
|
||||||
|
buildInputs = [ pythonPackages.mock pythonPackages.nose ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://github.com/rackspace/python-novaclient;
|
||||||
|
description = "Client library and command line tool for the OpenStack Nova API";
|
||||||
|
};
|
||||||
|
}
|
|
@ -6701,6 +6701,8 @@ let
|
||||||
|
|
||||||
nova = callPackage ../applications/virtualization/nova { };
|
nova = callPackage ../applications/virtualization/nova { };
|
||||||
|
|
||||||
|
novaclient = callPackage ../applications/virtualization/nova/client.nix { };
|
||||||
|
|
||||||
nvi = callPackage ../applications/editors/nvi { };
|
nvi = callPackage ../applications/editors/nvi { };
|
||||||
|
|
||||||
ocrad = callPackage ../applications/graphics/ocrad { };
|
ocrad = callPackage ../applications/graphics/ocrad { };
|
||||||
|
|
Loading…
Reference in New Issue