gandi-cli: 1.5 -> 1.6

+20 -8
+19 -7
pkgs/tools/networking/gandi-cli/default.nix
··· 1 - { lib, stdenv, python3Packages, fetchFromGitHub }: 2 - 3 - with python3Packages; 1 + { lib 2 + , buildPythonApplication 3 + , click 4 + , fetchFromGitHub 5 + , ipy 6 + , pyyaml 7 + , requests 8 + }: 4 9 5 10 buildPythonApplication rec { 6 11 pname = "gandi-cli"; 7 - version = "1.5"; 12 + version = "1.6"; 8 13 9 14 src = fetchFromGitHub { 10 15 owner = "Gandi"; 11 16 repo = "gandi.cli"; 12 17 rev = version; 13 - sha256 = "1jcabpphlm6qajw8dz0h4gynm03g1mxi0cn900i3v7wdfww1gfab"; 18 + sha256 = "sha256-KLeEbbzgqpmBjeTc5RYsFScym8xtMqVjU+H0lyDM0+o="; 14 19 }; 15 20 16 - propagatedBuildInputs = [ click ipy pyyaml requests ]; 21 + propagatedBuildInputs = [ 22 + click 23 + ipy 24 + pyyaml 25 + requests 26 + ]; 17 27 18 - doCheck = false; # Tests try to contact the actual remote API 28 + # Tests try to contact the actual remote API 29 + doCheck = false; 30 + pythonImportsCheck = [ "gandi" ]; 19 31 20 32 meta = with lib; { 21 33 description = "Command-line interface to the public Gandi.net API";
+1 -1
pkgs/top-level/all-packages.nix
··· 4272 4272 4273 4273 gallery-dl = python3Packages.callPackage ../applications/misc/gallery-dl { }; 4274 4274 4275 - gandi-cli = callPackage ../tools/networking/gandi-cli { }; 4275 + gandi-cli = python3Packages.callPackage ../tools/networking/gandi-cli { }; 4276 4276 4277 4277 gandom-fonts = callPackage ../data/fonts/gandom-fonts { }; 4278 4278