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: dca0b7187619
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5b36111f3c7a
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Apr 15, 2020

  1. Copy the full SHA
    ccd6892 View commit details
  2. Merge pull request #85238 from ryantm/linode-cli

    linode-cli: remove deprecated perl version, init python version at 2.14.1
    ryantm authored Apr 15, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5b36111 View commit details
Showing with 56 additions and 28 deletions.
  1. +55 −27 pkgs/tools/virtualization/linode-cli/default.nix
  2. +1 −1 pkgs/top-level/all-packages.nix
82 changes: 55 additions & 27 deletions pkgs/tools/virtualization/linode-cli/default.nix
Original file line number Diff line number Diff line change
@@ -1,42 +1,70 @@
{ stdenv, fetchFromGitHub, perlPackages, makeWrapper}:
{ lib
, buildPythonApplication
, fetchFromGitHub
, fetchpatch
, fetchurl
, terminaltables
, colorclass
, requests
, pyyaml
, setuptools
}:

perlPackages.buildPerlPackage rec {
let

spec = fetchurl {
url = "https://developers.linode.com/api/docs/v4/openapi.yaml";
sha256 = "1l2fahdcmv7sp1qkwr5nv2vls8fypvlybwylqfzhyjmn7jqkw4hq";
};

in

buildPythonApplication rec {
pname = "linode-cli";
version = "1.4.7";
version = "2.14.1";

src = fetchFromGitHub {
owner = "linode";
repo = "cli";
rev = "v${version}";
sha256 = "1wiz067wgxi4z4rz4n9p7dlvx5z4hkl2nxpfvhikl6dri4m2nkkp";
repo = pname;
rev = version;
sha256 = "1hpdmbzs182iag471yvq3kwd1san04a58sczzbmw6vjv2kswn1c2";
};

buildInputs = [ makeWrapper ];
propagatedBuildInputs = with perlPackages; [
JSON
LWP
MozillaCA
TryTiny
WebServiceLinode
patches = [
# make enum34 depend on python version
( fetchpatch {
url = "https://github.com/linode/linode-cli/pull/184/commits/4cf55759c5da33fbc49b9ba664698875d67d4f76.patch";
sha256 = "04n9a6yh0abyyymvfzajhav6qxwvzjl2vs8jnqp3yqrma7kl0slj";
})
];

# Wrap perl scripts so they can find libraries
postInstall = ''
for n in "$out/bin"/*; do
wrapProgram "$n" --prefix PERL5LIB : "$PERL5LIB"
done
# remove need for git history
prePatch = ''
substituteInPlace setup.py \
--replace "version=get_version()," "version='${version}',"
'';

# Has no tests
doCheck = false;
propagatedBuildInputs = [
terminaltables
colorclass
requests
pyyaml
setuptools
];

# Has no "doc" or "devdoc" outputs
outputs = [ "out" ];
postConfigure = ''
python3 -m linodecli bake ${spec} --skip-config
cp data-3 linodecli/
'';

meta = with stdenv.lib; {
description = "Command-line interface to the Linode platform";
homepage = "https://github.com/linode/cli";
license = with licenses; [ artistic2 gpl2 ];
maintainers = with maintainers; [ nixy ];
# requires linode access token for unit tests, and running executable
doCheck = false;

meta = with lib; {
homepage = "https://github.com/linode/linode-cli";
description = "The Linode Command Line Interface";
license = licenses.bsd3;
maintainers = with maintainers; [ ryantm ];
};

}
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -26299,7 +26299,7 @@ in

xib2nib = callPackage ../development/tools/xib2nib {};

linode-cli = callPackage ../tools/virtualization/linode-cli { };
linode-cli = python3Packages.callPackage ../tools/virtualization/linode-cli {};

hss = callPackage ../tools/networking/hss {};