summary refs log tree commit diff
path: root/pkgs/tools/misc/kargo/default.nix
blob: 822932dc5ac48f0dfa1a5fe2bafcc866d93391b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{ stdenv, fetchurl, python2Packages }:

python2Packages.buildPythonApplication rec {
  version = "0.4.6";
  name = "kargo-${version}";

  src = fetchurl {
    url = "mirror://pypi/k/kargo/${name}.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; [
    ];
  };
}