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

36 lines
760 B
Nix
Raw Normal View History

{ stdenv, fetchurl, python2Packages }:
2016-10-25 12:44:41 +03:00
2016-11-09 17:06:46 +03:00
python2Packages.buildPythonApplication rec {
2016-10-25 12:44:41 +03:00
version = "0.4.6";
2019-08-31 14:41:23 +03:00
pname = "kargo";
2016-10-25 12:44:41 +03:00
src = fetchurl {
2019-08-31 14:41:23 +03:00
url = "mirror://pypi/k/kargo/${pname}-${version}.tar.gz";
2016-10-25 12:44:41 +03:00
sha256 = "1sm721c3d4scpc1gj2j3qwssr6jjvw6aq3p7ipvhbd9ywmm9dd7b";
};
doCheck = false;
2016-11-09 17:06:46 +03:00
propagatedBuildInputs = with python2Packages; [
ansible
2016-10-25 12:44:41 +03:00
boto
cffi
cryptography
libcloud
markupsafe
netaddr
pyasn1
requests
2016-10-25 12:44:41 +03: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; [
];
};
}