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