2012-04-12 14:16:23 +00:00
|
|
|
{ stdenv, fetchgit, which, pythonPackages }:
|
2011-03-30 14:37:53 +00:00
|
|
|
|
2012-04-12 14:16:23 +00:00
|
|
|
pythonPackages.buildPythonPackage rec {
|
2015-03-07 08:58:23 +00:00
|
|
|
name = "euca2ools-2.1.4";
|
2011-03-30 14:37:53 +00:00
|
|
|
namePrefix = "";
|
|
|
|
|
2012-04-12 14:16:23 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/eucalyptus/euca2ools.git;
|
2015-03-07 08:58:23 +00:00
|
|
|
rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
|
|
|
|
sha256 = "0f52jqw3s79w391lbzlh83lp55j73clvwmn2np4fy6kxc4j49da1";
|
2011-03-30 14:37:53 +00:00
|
|
|
};
|
|
|
|
|
2014-10-11 18:29:17 +00:00
|
|
|
pythonPath = [ pythonPackages.boto pythonPackages.m2crypto ];
|
2011-03-30 14:37:53 +00: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;
|
|
|
|
};
|
|
|
|
}
|