nixpkgs/pkgs/tools/virtualization/euca2ools/default.nix

24 lines
687 B
Nix
Raw Normal View History

{ lib, fetchgit, python2Packages }:
2016-11-09 10:30:16 +00:00
let
inherit (python2Packages) buildPythonApplication boto m2crypto;
2019-08-13 21:52:01 +00:00
in buildPythonApplication {
2020-03-29 10:34:50 +00:00
pname = "euca2ools";
version = "2.1.4";
src = fetchgit {
url = "https://github.com/eucalyptus/euca2ools.git";
rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b";
sha256 = "0grsgn5gbvk1hlfa8qx7ppz7iyfyi2pdhxy8njr8lm60w4amfiyq";
};
2016-11-09 10:30:16 +00:00
propagatedBuildInputs = [ boto m2crypto ];
meta = {
homepage = "https://github.com/eucalyptus/euca2ools";
description = "Tools for interacting with Amazon EC2/S3-compatible cloud computing services";
2021-01-15 09:19:50 +00:00
maintainers = [ lib.maintainers.eelco ];
platforms = lib.platforms.linux;
};
}