tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gandi-cli: 1.5 -> 1.6
Fabian Affolter
5 years ago
2f9d71e0
dd3238c0
+20
-8
2 changed files
expand all
collapse all
unified
split
pkgs
tools
networking
gandi-cli
default.nix
top-level
all-packages.nix
+19
-7
pkgs/tools/networking/gandi-cli/default.nix
···
1
1
-
{ lib, stdenv, python3Packages, fetchFromGitHub }:
2
2
-
3
3
-
with python3Packages;
1
1
+
{ lib
2
2
+
, buildPythonApplication
3
3
+
, click
4
4
+
, fetchFromGitHub
5
5
+
, ipy
6
6
+
, pyyaml
7
7
+
, requests
8
8
+
}:
4
9
5
10
buildPythonApplication rec {
6
11
pname = "gandi-cli";
7
7
-
version = "1.5";
12
12
+
version = "1.6";
8
13
9
14
src = fetchFromGitHub {
10
15
owner = "Gandi";
11
16
repo = "gandi.cli";
12
17
rev = version;
13
13
-
sha256 = "1jcabpphlm6qajw8dz0h4gynm03g1mxi0cn900i3v7wdfww1gfab";
18
18
+
sha256 = "sha256-KLeEbbzgqpmBjeTc5RYsFScym8xtMqVjU+H0lyDM0+o=";
14
19
};
15
20
16
16
-
propagatedBuildInputs = [ click ipy pyyaml requests ];
21
21
+
propagatedBuildInputs = [
22
22
+
click
23
23
+
ipy
24
24
+
pyyaml
25
25
+
requests
26
26
+
];
17
27
18
18
-
doCheck = false; # Tests try to contact the actual remote API
28
28
+
# Tests try to contact the actual remote API
29
29
+
doCheck = false;
30
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
4275
-
gandi-cli = callPackage ../tools/networking/gandi-cli { };
4275
4275
+
gandi-cli = python3Packages.callPackage ../tools/networking/gandi-cli { };
4276
4276
4277
4277
gandom-fonts = callPackage ../data/fonts/gandom-fonts { };
4278
4278