gandi-cli: 1.5 -> 1.6
This commit is contained in:
parent
dd3238c002
commit
2f9d71e05c
@ -1,21 +1,33 @@
|
|||||||
{ lib, stdenv, python3Packages, fetchFromGitHub }:
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
with python3Packages;
|
, click
|
||||||
|
, fetchFromGitHub
|
||||||
|
, ipy
|
||||||
|
, pyyaml
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "gandi-cli";
|
pname = "gandi-cli";
|
||||||
version = "1.5";
|
version = "1.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Gandi";
|
owner = "Gandi";
|
||||||
repo = "gandi.cli";
|
repo = "gandi.cli";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1jcabpphlm6qajw8dz0h4gynm03g1mxi0cn900i3v7wdfww1gfab";
|
sha256 = "sha256-KLeEbbzgqpmBjeTc5RYsFScym8xtMqVjU+H0lyDM0+o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ click ipy pyyaml requests ];
|
propagatedBuildInputs = [
|
||||||
|
click
|
||||||
|
ipy
|
||||||
|
pyyaml
|
||||||
|
requests
|
||||||
|
];
|
||||||
|
|
||||||
doCheck = false; # Tests try to contact the actual remote API
|
# Tests try to contact the actual remote API
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "gandi" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Command-line interface to the public Gandi.net API";
|
description = "Command-line interface to the public Gandi.net API";
|
||||||
|
@ -4272,7 +4272,7 @@ in
|
|||||||
|
|
||||||
gallery-dl = python3Packages.callPackage ../applications/misc/gallery-dl { };
|
gallery-dl = python3Packages.callPackage ../applications/misc/gallery-dl { };
|
||||||
|
|
||||||
gandi-cli = callPackage ../tools/networking/gandi-cli { };
|
gandi-cli = python3Packages.callPackage ../tools/networking/gandi-cli { };
|
||||||
|
|
||||||
gandom-fonts = callPackage ../data/fonts/gandom-fonts { };
|
gandom-fonts = callPackage ../data/fonts/gandom-fonts { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user