2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchgit, python2Packages }:
|
2011-03-30 15:37:53 +01:00
|
|
|
|
2016-11-09 10:30:16 +00:00
|
|
|
let
|
|
|
|
inherit (python2Packages) buildPythonApplication boto m2crypto;
|
|
|
|
in buildPythonApplication rec {
|
2015-03-07 08:58:23 +00:00
|
|
|
name = "euca2ools-2.1.4";
|
2011-03-30 15:37:53 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
2012-04-12 15:16:23 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = https://github.com/eucalyptus/euca2ools.git;
|
2015-03-07 08:58:23 +00:00
|
|
|
rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0grsgn5gbvk1hlfa8qx7ppz7iyfyi2pdhxy8njr8lm60w4amfiyq";
|
2011-03-30 15:37:53 +01:00
|
|
|
};
|
|
|
|
|
2016-11-09 10:30:16 +00:00
|
|
|
propagatedBuildInputs = [ boto m2crypto ];
|
2011-03-30 15:37:53 +01:00
|
|
|
|
|
|
|
meta = {
|
2018-09-04 21:00:16 +01:00
|
|
|
homepage = https://github.com/eucalyptus/euca2ools;
|
2011-03-30 15:37:53 +01:00
|
|
|
description = "Tools for interacting with Amazon EC2/S3-compatible cloud computing services";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|