summary refs log tree commit diff
path: root/pkgs/tools/virtualization/euca2ools/default.nix
blob: ae488b0f359d71a39664435d7ebc945b2f7c9366 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchgit, which, pythonPackages }:

pythonPackages.buildPythonPackage rec {
  name = "euca2ools-2.1.3";
  namePrefix = "";

  src = fetchgit {
    url = https://github.com/eucalyptus/euca2ools.git;
    rev = "8ae2ecc";
    sha256 = "caef5a3e2c9b515fd815034b5b7304acc878a0b9777ae4208dc033b0bf39da2b";
  };

  pythonPath = [ pythonPackages.boto pythonPackages.m2crypto pythonPackages.ssl ];

  doCheck = false;

  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;
  };
}