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