ed6ce446d0
Change-Id: I8be644bcf2892e1146c3b3eedea36c5f5e749c16
22 lines
667 B
Nix
22 lines
667 B
Nix
{ stdenv, fetchgit, which, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
name = "euca2ools-2.1.4";
|
|
namePrefix = "";
|
|
|
|
src = fetchgit {
|
|
url = https://github.com/eucalyptus/euca2ools.git;
|
|
rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
|
|
sha256 = "0f52jqw3s79w391lbzlh83lp55j73clvwmn2np4fy6kxc4j49da1";
|
|
};
|
|
|
|
pythonPath = [ pythonPackages.boto pythonPackages.m2crypto ];
|
|
|
|
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;
|
|
};
|
|
}
|