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