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; buildGoModule rec {
buildPythonApplication rec {
pname = "cloudmonkey"; pname = "cloudmonkey";
version = "5.3.3"; version = "6.1.0";
propagatedBuildInputs = [ argcomplete pygments ]; src = fetchFromGitHub {
owner = "apache";
doCheck = false; # upstream has no tests defined repo = "cloudstack-cloudmonkey";
rev = version;
src = fetchPypi { sha256 = "sha256-OmVM6ayrtrLl+PADnkUnrssbsq1GZp2KiMBOXPgfi5Y=";
inherit pname version;
sha256 = "064yk3lwl272nyn20xxrh0qxzh3r1rl9015qqf2i4snqdzwd5cf7";
}; };
runVend = true;
vendorSha256 = null;
meta = with lib; { meta = with lib; {
description = "CLI for Apache CloudStack"; 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 ]; license = [ licenses.asl20 ];
maintainers = [ maintainers.womfoo ]; maintainers = [ maintainers.womfoo ];
}; };