Merge pull request #51284 from kampka/upgrade-gandi-cli

gandi-cli: 0.19 -> 1.3
This commit is contained in:
worldofpeace 2018-11-30 18:16:13 -05:00 committed by GitHub
commit 22926c8b84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,17 +1,16 @@
{ stdenv, pythonPackages, fetchFromGitHub }: { stdenv, python3Packages, fetchFromGitHub }:
with pythonPackages; with python3Packages;
buildPythonPackage rec { buildPythonApplication rec {
namePrefix = ""; pname = "gandi-cli";
name = "gandi-cli-${version}"; version = "1.3";
version = "0.19";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "0xbf97p75zl6sjxqcgmaa4p5rax2h6ixn8srwdr4rsx2zz9dpwgp";
rev = version;
repo = "gandi.cli";
owner = "Gandi"; owner = "Gandi";
repo = "gandi.cli";
rev = version;
sha256 = "07i1y88j5awsw7qadk7gnmax8mi7vgh1nflnc8j54z53fjyamlcs";
}; };
propagatedBuildInputs = [ click ipy pyyaml requests ]; propagatedBuildInputs = [ click ipy pyyaml requests ];
@ -22,6 +21,6 @@ buildPythonPackage rec {
description = "Command-line interface to the public Gandi.net API"; description = "Command-line interface to the public Gandi.net API";
homepage = http://cli.gandi.net/; homepage = http://cli.gandi.net/;
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ ckampka ];
}; };
} }