1{ stdenv, fetchgit, which, python2Packages }:
2
3let
4 inherit (python2Packages) buildPythonApplication boto m2crypto;
5in buildPythonApplication rec {
6 name = "euca2ools-2.1.4";
7 namePrefix = "";
8
9 src = fetchgit {
10 url = https://github.com/eucalyptus/euca2ools.git;
11 rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
12 sha256 = "0grsgn5gbvk1hlfa8qx7ppz7iyfyi2pdhxy8njr8lm60w4amfiyq";
13 };
14
15 propagatedBuildInputs = [ boto m2crypto ];
16
17 meta = {
18 homepage = http://open.eucalyptus.com/downloads;
19 description = "Tools for interacting with Amazon EC2/S3-compatible cloud computing services";
20 maintainers = [ stdenv.lib.maintainers.eelco ];
21 platforms = stdenv.lib.platforms.linux;
22 };
23}