0467a17858
This makes pythonPackages.sqlalchemy the most up to date revision (it was called sqlalchemy_1_0 before), and maintains the various “legacy” versions available as pythonPackages.sqlalchemyX for X in {7,8,9}. All derivations that required `sqlalchemy_1_0` now require `sqlalchemy` while those that required `sqlalchemy` now require `sqlalchemy7`. The derivations are not changed, only the attribute names they are bound to.
69 lines
2.0 KiB
Nix
69 lines
2.0 KiB
Nix
{ stdenv, fetchurl, pythonPackages, openssl, openssh }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "nova-${version}";
|
|
version = "12.0.0";
|
|
namePrefix = "";
|
|
|
|
PBR_VERSION = "${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/openstack/nova/archive/${version}.tar.gz";
|
|
sha256 = "175n1znvmy8f5vqvabc2fa4qy8y17685z4gzpq8984mdsdnpv21w";
|
|
};
|
|
|
|
# otherwise migrate.cfg is not installed
|
|
patchPhase = ''
|
|
echo "graft nova" >> MANIFEST.in
|
|
'';
|
|
|
|
# https://github.com/openstack/nova/blob/stable/liberty/requirements.txt
|
|
propagatedBuildInputs = with pythonPackages; [
|
|
pbr sqlalchemy boto decorator eventlet jinja2 lxml routes cryptography
|
|
webob greenlet PasteDeploy paste prettytable sqlalchemy_migrate netaddr
|
|
netifaces paramiko Babel iso8601 jsonschema keystoneclient requests2 six
|
|
stevedore websockify rfc3986 os-brick psutil_1 alembic psycopg2 pymysql
|
|
keystonemiddleware MySQL_python
|
|
|
|
# oslo components
|
|
oslo-rootwrap oslo-reports oslo-utils oslo-i18n oslo-config oslo-context
|
|
oslo-log oslo-serialization oslo-middleware oslo-db oslo-service oslo-messaging
|
|
oslo-concurrency oslo-versionedobjects
|
|
|
|
# clients
|
|
cinderclient neutronclient glanceclient
|
|
];
|
|
|
|
buildInputs = with pythonPackages; [
|
|
coverage fixtures mock mox3 subunit requests-mock pillow oslosphinx
|
|
oslotest testrepository testresources testtools tempest-lib bandit
|
|
oslo-vmware pep8 barbicanclient ironicclient openssl openssh
|
|
];
|
|
|
|
postInstall = ''
|
|
cp -prvd etc $out/etc
|
|
|
|
# check all binaries don't crash
|
|
for i in $out/bin/*; do
|
|
case "$i" in
|
|
*nova-dhcpbridge*)
|
|
:
|
|
;;
|
|
*nova-rootwrap*)
|
|
:
|
|
;;
|
|
*)
|
|
$i --help
|
|
;;
|
|
esac
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://nova.openstack.org/;
|
|
description = "OpenStack Compute (a.k.a. Nova), a cloud computing fabric controller";
|
|
license = stdenv.lib.licenses.asl20;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|