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

39 lines
782 B
Nix
Raw Normal View History

2020-06-08 20:45:50 +00:00
{ stdenv, fetchurl, python3Packages }:
2016-10-25 09:44:41 +00:00
2020-06-08 20:45:50 +00:00
with python3Packages;
buildPythonApplication rec {
2020-03-31 02:19:00 +00:00
version = "0.4.8";
2019-08-31 11:41:23 +00:00
pname = "kargo";
2016-10-25 09:44:41 +00:00
src = fetchurl {
2019-08-31 11:41:23 +00:00
url = "mirror://pypi/k/kargo/${pname}-${version}.tar.gz";
2020-03-31 02:19:00 +00:00
sha256 = "1iq3vrmglag9gpsir03yz7556m0bz99nwb2mf594378cqzbr6db3";
2016-10-25 09:44:41 +00:00
};
2020-06-08 20:45:50 +00:00
propagatedBuildInputs = [
ansible
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
];
2020-06-08 20:45:50 +00:00
checkPhase = ''
HOME=$TMPDIR $out/bin/kargo -v
'';
2016-10-25 09:44:41 +00:00
meta = with stdenv.lib; {
2020-03-31 02:19:00 +00:00
homepage = "https://github.com/kubespray/kargo-cli";
description = "A tool helps to deploy a kubernetes cluster with Ansible";
2016-10-25 09:44:41 +00:00
platforms = platforms.linux;
license = licenses.gpl3;
2020-06-08 20:45:50 +00:00
maintainers = with maintainers; [ ];
2016-10-25 09:44:41 +00:00
};
}