nixpkgs/pkgs/tools/networking/gandi-cli/default.nix

27 lines
661 B
Nix
Raw Normal View History

2018-11-30 15:16:28 +00:00
{ stdenv, python3Packages, fetchFromGitHub }:
2018-11-30 15:16:28 +00:00
with python3Packages;
2018-11-30 15:16:28 +00:00
buildPythonApplication rec {
pname = "gandi-cli";
version = "1.4";
src = fetchFromGitHub {
owner = "Gandi";
2018-11-30 15:16:28 +00:00
repo = "gandi.cli";
rev = version;
sha256 = "06dc59iwxfncz61hs3lcq08c5zrp7x4n4ibk5lpqqx6rk0izzz9b";
};
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";
homepage = https://cli.gandi.net/;
license = licenses.gpl3Plus;
2018-11-30 15:16:28 +00:00
maintainers = with maintainers; [ ckampka ];
};
}