Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 80bf06e78b14
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 28ba03ae72dc
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 19, 2021

  1. gandi-cli: 1.5 -> 1.6

    fabaff committed Jan 19, 2021
    Copy the full SHA
    2f9d71e View commit details
  2. Merge pull request #109912 from fabaff/bump-gandi

    gandi-cli: 1.5 -> 1.6
    SuperSandro2000 authored Jan 19, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    28ba03a View commit details
Showing with 20 additions and 8 deletions.
  1. +19 −7 pkgs/tools/networking/gandi-cli/default.nix
  2. +1 −1 pkgs/top-level/all-packages.nix
26 changes: 19 additions & 7 deletions pkgs/tools/networking/gandi-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
{ lib, stdenv, python3Packages, fetchFromGitHub }:

with python3Packages;
{ lib
, buildPythonApplication
, click
, fetchFromGitHub
, ipy
, pyyaml
, requests
}:

buildPythonApplication rec {
pname = "gandi-cli";
version = "1.5";
version = "1.6";

src = fetchFromGitHub {
owner = "Gandi";
repo = "gandi.cli";
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; {
description = "Command-line interface to the public Gandi.net API";
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4279,7 +4279,7 @@ in

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 { };