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

39 lines
783 B
Nix
Raw Normal View History

2020-06-08 21:45:50 +01:00
{ stdenv, fetchurl, python3Packages }:
2016-10-25 10:44:41 +01:00
2020-06-08 21:45:50 +01:00
with python3Packages;
buildPythonApplication rec {
2020-03-31 03:19:00 +01:00
version = "0.4.8";
2019-08-31 12:41:23 +01:00
pname = "kargo";
2016-10-25 10:44:41 +01:00
src = fetchurl {
2019-08-31 12:41:23 +01:00
url = "mirror://pypi/k/kargo/${pname}-${version}.tar.gz";
2020-03-31 03:19:00 +01:00
sha256 = "1iq3vrmglag9gpsir03yz7556m0bz99nwb2mf594378cqzbr6db3";
2016-10-25 10:44:41 +01:00
};
2020-06-08 21:45:50 +01:00
propagatedBuildInputs = [
ansible
2016-10-25 10:44:41 +01:00
boto
cffi
cryptography
libcloud
markupsafe
netaddr
pyasn1
requests
2016-10-25 10:44:41 +01:00
setuptools
];
2020-06-08 21:45:50 +01:00
checkPhase = ''
HOME=$TMPDIR $out/bin/kargo -v
'';
2016-10-25 10:44:41 +01:00
meta = with stdenv.lib; {
2020-03-31 03:19:00 +01:00
homepage = "https://github.com/kubespray/kargo-cli";
2016-10-25 10:44:41 +01:00
description = "A tool helps to deploy a kubernetes cluster with Ansible.";
platforms = platforms.linux;
license = licenses.gpl3;
2020-06-08 21:45:50 +01:00
maintainers = with maintainers; [ ];
2016-10-25 10:44:41 +01:00
};
}