about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/virtualization/euca2ools/default.nix
blob: cb31a66ea72d8ec9af5510f17d6eb6a639199943 (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, python2Packages }:

let
  inherit (python2Packages) buildPythonApplication boto m2crypto;
in buildPythonApplication {
  name = "euca2ools-2.1.4";
  namePrefix = "";

  src = fetchgit {
    url = https://github.com/eucalyptus/euca2ools.git;
    rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
    sha256 = "0grsgn5gbvk1hlfa8qx7ppz7iyfyi2pdhxy8njr8lm60w4amfiyq";
  };

  propagatedBuildInputs = [ boto m2crypto ];

  meta = {
    homepage = https://github.com/eucalyptus/euca2ools;
    description = "Tools for interacting with Amazon EC2/S3-compatible cloud computing services";
    maintainers = [ stdenv.lib.maintainers.eelco ];
    platforms = stdenv.lib.platforms.linux;
  };
}