Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 25 lines 605 B view raw
1{ python2Packages, lib }: 2 3with python2Packages; 4 5buildPythonApplication rec { 6 pname = "cloudmonkey"; 7 version = "5.3.3"; 8 9 propagatedBuildInputs = [ argcomplete pygments ]; 10 11 doCheck = false; # upstream has no tests defined 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "064yk3lwl272nyn20xxrh0qxzh3r1rl9015qqf2i4snqdzwd5cf7"; 16 }; 17 18 meta = with lib; { 19 description = "CLI for Apache CloudStack"; 20 homepage = "https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudStack+cloudmonkey+CLI"; 21 license = [ licenses.asl20 ]; 22 maintainers = [ maintainers.womfoo ]; 23 }; 24 25}