2019-02-24 22:32:06 +00:00
|
|
|
{ stdenv, fetchurl, python2Packages }:
|
2016-10-25 10:44:41 +01:00
|
|
|
|
2016-11-09 14:06:46 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2016-10-25 10:44:41 +01: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; [
|
2019-02-24 22:32:06 +00:00
|
|
|
ansible
|
2016-10-25 10:44:41 +01:00
|
|
|
boto
|
|
|
|
cffi
|
|
|
|
cryptography
|
|
|
|
libcloud
|
|
|
|
markupsafe
|
|
|
|
netaddr
|
|
|
|
pyasn1
|
2017-05-07 11:55:45 +01:00
|
|
|
requests
|
2016-10-25 10:44:41 +01: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; [
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|