* Add some more Nova dependencies: anyjson, amqplib, carrot,
sqlalchemy. Updated nose to 1.0.0 to fix "make check" on Python 2.7. svn path=/nixpkgs/branches/modular-python/; revision=26595
This commit is contained in:
@@ -1,8 +1,10 @@
|
||||
{ stdenv, fetchurl, python, setuptools, pythonPackages }:
|
||||
{ stdenv, fetchurl, pythonPackages }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
let version = "2011.1"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "openstack-compute-2011.1";
|
||||
|
||||
src = fetchurl {
|
||||
@@ -10,10 +12,17 @@ stdenv.mkDerivation {
|
||||
sha256 = "1g8f75mzjpkzhqk91hga5wpjh8d0kbc9fxxjk0px0qjk20qrmb45";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ python setuptools pythonPackages.gflags pythonPackages.netaddr pythonPackages.eventlet
|
||||
pythonPath =
|
||||
[ pythonPackages.setuptools pythonPackages.eventlet pythonPackages.greenlet
|
||||
pythonPackages.gflags pythonPackages.netaddr pythonPackages.sqlalchemy
|
||||
pythonPackages.carrot
|
||||
];
|
||||
|
||||
buildInputs =
|
||||
[ pythonPackages.python
|
||||
pythonPackages.wrapPython
|
||||
] ++ pythonPath;
|
||||
|
||||
preConfigure = "export HOME=$(pwd)";
|
||||
|
||||
buildPhase = "python setup.py build";
|
||||
@@ -24,6 +33,8 @@ stdenv.mkDerivation {
|
||||
export PYTHONPATH=$p:$PYTHONPATH
|
||||
mkdir -p $p
|
||||
python setup.py install --prefix=$out
|
||||
|
||||
wrapPythonPrograms
|
||||
'';
|
||||
|
||||
meta = {
|
||||
|
||||
Reference in New Issue
Block a user