nixpkgs/pkgs/tools/misc/kargo/default.nix

37 lines
783 B
Nix
Raw Normal View History

2017-08-28 10:57:55 +00:00
{ stdenv, fetchurl, python2Packages, ansible2 }:
2016-10-25 09:44:41 +00:00
2016-11-09 14:06:46 +00:00
python2Packages.buildPythonApplication rec {
2016-10-25 09:44:41 +00:00
version = "0.4.6";
name = "kargo-${version}";
src = fetchurl {
url = "mirror://pypi/k/kargo/${name}.tar.gz";
sha256 = "1sm721c3d4scpc1gj2j3qwssr6jjvw6aq3p7ipvhbd9ywmm9dd7b";
};
doCheck = false;
2016-11-09 14:06:46 +00:00
propagatedBuildInputs = with python2Packages; [
ansible2
2016-10-25 09:44:41 +00:00
boto
cffi
cryptography
libcloud
markupsafe
netaddr
pyasn1
requests
2016-10-25 09:44:41 +00:00
setuptools
];
meta = with stdenv.lib; {
homepage = https://github.com/kubespray/kargo-cli;
description = "A tool helps to deploy a kubernetes cluster with Ansible.";
platforms = platforms.linux;
license = licenses.gpl3;
maintainers = with maintainers; [
jgeerds
];
};
}