mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
36 lines
760 B
Nix
36 lines
760 B
Nix
{ stdenv, fetchurl, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
version = "0.4.6";
|
|
pname = "kargo";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://pypi/k/kargo/${pname}-${version}.tar.gz";
|
|
sha256 = "1sm721c3d4scpc1gj2j3qwssr6jjvw6aq3p7ipvhbd9ywmm9dd7b";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = with python2Packages; [
|
|
ansible
|
|
boto
|
|
cffi
|
|
cryptography
|
|
libcloud
|
|
markupsafe
|
|
netaddr
|
|
pyasn1
|
|
requests
|
|
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; [
|
|
];
|
|
};
|
|
}
|