tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
gandi-cli: 0.19 -> 1.3
Christian Kampka
7 years ago
4ed2dd91
b6708d49
+9
-10
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
gandi-cli
default.nix
+9
-10
pkgs/tools/networking/gandi-cli/default.nix
···
1
1
-
{ stdenv, pythonPackages, fetchFromGitHub }:
1
1
+
{ stdenv, python3Packages, fetchFromGitHub }:
2
2
3
3
-
with pythonPackages;
3
3
+
with python3Packages;
4
4
5
5
-
buildPythonPackage rec {
6
6
-
namePrefix = "";
7
7
-
name = "gandi-cli-${version}";
8
8
-
version = "0.19";
5
5
+
buildPythonApplication rec {
6
6
+
pname = "gandi-cli";
7
7
+
version = "1.3";
9
8
10
9
src = fetchFromGitHub {
11
11
-
sha256 = "0xbf97p75zl6sjxqcgmaa4p5rax2h6ixn8srwdr4rsx2zz9dpwgp";
10
10
+
owner = "Gandi";
11
11
+
repo = "gandi.cli";
12
12
rev = version;
13
13
-
repo = "gandi.cli";
14
14
-
owner = "Gandi";
13
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
24
+
maintainers = with maintainers; [ ckampka ];
25
25
};
26
26
}
27
27
-