cloudmonkey: 5.3.3 -> 6.1.0

This commit is contained in:
Lein Matsumaru 2021-07-17 12:08:39 +00:00
parent d41882c7b9
commit 1d9dfb8747
No known key found for this signature in database
GPG key ID: AAA50652F0479205

View file

@ -1,23 +1,23 @@
{ python2Packages, lib }:
{ buildGoModule, fetchFromGitHub, lib }:
with python2Packages;
buildPythonApplication rec {
buildGoModule rec {
pname = "cloudmonkey";
version = "5.3.3";
version = "6.1.0";
propagatedBuildInputs = [ argcomplete pygments ];
doCheck = false; # upstream has no tests defined
src = fetchPypi {
inherit pname version;
sha256 = "064yk3lwl272nyn20xxrh0qxzh3r1rl9015qqf2i4snqdzwd5cf7";
src = fetchFromGitHub {
owner = "apache";
repo = "cloudstack-cloudmonkey";
rev = version;
sha256 = "sha256-OmVM6ayrtrLl+PADnkUnrssbsq1GZp2KiMBOXPgfi5Y=";
};
runVend = true;
vendorSha256 = null;
meta = with lib; {
description = "CLI for Apache CloudStack";
homepage = "https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudStack+cloudmonkey+CLI";
homepage = "https://github.com/apache/cloudstack-cloudmonkey";
license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ];
};