2012-04-12 16:16:23 +02:00
|
|
|
{ stdenv, fetchgit, which, pythonPackages }:
|
2011-03-30 16:37:53 +02:00
|
|
|
|
2012-04-12 16:16:23 +02:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
2013-05-30 15:02:36 +02:00
|
|
|
name = "euca2ools-2.1.3";
|
2011-03-30 16:37:53 +02:00
|
|
|
namePrefix = "";
|
|
|
|
|
2012-04-12 16:16:23 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/eucalyptus/euca2ools.git;
|
2013-05-30 15:02:36 +02:00
|
|
|
rev = "8ae2ecc";
|
|
|
|
sha256 = "caef5a3e2c9b515fd815034b5b7304acc878a0b9777ae4208dc033b0bf39da2b";
|
2011-03-30 16:37:53 +02:00
|
|
|
};
|
|
|
|
|
2012-04-12 16:16:23 +02:00
|
|
|
pythonPath = [ pythonPackages.boto pythonPackages.m2crypto pythonPackages.ssl ];
|
2011-03-30 16:37:53 +02:00
|
|
|
|
2013-05-30 15:02:36 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2011-03-30 16:37:53 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://open.eucalyptus.com/downloads;
|
|
|
|
description = "Tools for interacting with Amazon EC2/S3-compatible cloud computing services";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|