2018-11-30 15:16:28 +00:00
|
|
|
{ stdenv, python3Packages, fetchFromGitHub }:
|
2016-05-03 17:25:57 +01:00
|
|
|
|
2018-11-30 15:16:28 +00:00
|
|
|
with python3Packages;
|
2016-05-03 17:25:57 +01:00
|
|
|
|
2018-11-30 15:16:28 +00:00
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "gandi-cli";
|
2019-11-02 01:38:30 +00:00
|
|
|
version = "1.5";
|
2016-05-03 17:25:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Gandi";
|
2018-11-30 15:16:28 +00:00
|
|
|
repo = "gandi.cli";
|
|
|
|
rev = version;
|
2019-11-02 01:38:30 +00:00
|
|
|
sha256 = "1jcabpphlm6qajw8dz0h4gynm03g1mxi0cn900i3v7wdfww1gfab";
|
2016-05-03 17:25:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ click ipy pyyaml requests ];
|
|
|
|
|
|
|
|
doCheck = false; # Tests try to contact the actual remote API
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command-line interface to the public Gandi.net API";
|
2019-04-22 09:14:28 +01:00
|
|
|
homepage = https://cli.gandi.net/;
|
2016-05-03 17:25:57 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2019-09-03 21:52:13 +01:00
|
|
|
maintainers = with maintainers; [ kampka ];
|
2016-05-03 17:25:57 +01:00
|
|
|
};
|
|
|
|
}
|