Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gandi-cli: 0.19 -> 1.3

+9 -10
+9 -10
pkgs/tools/networking/gandi-cli/default.nix
··· 1 - { stdenv, pythonPackages, fetchFromGitHub }: 1 + { stdenv, python3Packages, fetchFromGitHub }: 2 2 3 - with pythonPackages; 3 + with python3Packages; 4 4 5 - buildPythonPackage rec { 6 - namePrefix = ""; 7 - name = "gandi-cli-${version}"; 8 - version = "0.19"; 5 + buildPythonApplication rec { 6 + pname = "gandi-cli"; 7 + version = "1.3"; 9 8 10 9 src = fetchFromGitHub { 11 - sha256 = "0xbf97p75zl6sjxqcgmaa4p5rax2h6ixn8srwdr4rsx2zz9dpwgp"; 10 + owner = "Gandi"; 11 + repo = "gandi.cli"; 12 12 rev = version; 13 - repo = "gandi.cli"; 14 - owner = "Gandi"; 13 + sha256 = "07i1y88j5awsw7qadk7gnmax8mi7vgh1nflnc8j54z53fjyamlcs"; 15 14 }; 16 15 17 16 propagatedBuildInputs = [ click ipy pyyaml requests ]; ··· 22 21 description = "Command-line interface to the public Gandi.net API"; 23 22 homepage = http://cli.gandi.net/; 24 23 license = licenses.gpl3Plus; 24 + maintainers = with maintainers; [ ckampka ]; 25 25 }; 26 26 } 27 -