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

Commits on Dec 23, 2020

  1. coursier: 2.0.7 -> 2.0.8

    NeQuissimus committed Dec 23, 2020
    Copy the full SHA
    f061d6f View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    421b787 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    be34936 View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    caendesilva Caen De Silva
    Copy the full SHA
    9f371ad View commit details
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/boto3/default.nix
Original file line number Diff line number Diff line change
@@ -13,11 +13,11 @@

buildPythonPackage rec {
pname = "boto3";
version = "1.16.42"; # N.B: if you change this, change botocore too
version = "1.16.43"; # N.B: if you change this, change botocore too

src = fetchPypi {
inherit pname version;
sha256 = "sha256-ko5z9R9xRpobDOrR+7N/MERX7FRACDPALAwyjmRYH+o=";
sha256 = "sha256-pJs6tL+i9jlLpgFlz8RoQQeX3UEPMu7UfiL2FFHumG4=";
};

propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/botocore/default.nix
Original file line number Diff line number Diff line change
@@ -12,11 +12,11 @@

buildPythonPackage rec {
pname = "botocore";
version = "1.19.42"; # N.B: if you change this, change boto3 and awscli to a matching version
version = "1.19.43"; # N.B: if you change this, change boto3 and awscli to a matching version

src = fetchPypi {
inherit pname version;
sha256 = "sha256-8LBx/Qj01y17osVH2lKavr4FJwXBWVvm0SohUadaYCk=";
sha256 = "sha256-c5jJANvU49YWRyaSFTluo+gIL0lPPntl2basoEnB1GM=";
};

propagatedBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/development/tools/coursier/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
, coreutils, git, gnused, nix, nixfmt }:

let
version = "2.0.7";
version = "2.0.8";

zshCompletion = fetchurl {
url =
@@ -19,7 +19,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url =
"https://github.com/coursier/coursier/releases/download/v${version}/coursier";
sha256 = "1m6b12cqbwsk4xf2r79y51154j6ws6f0kiw1yj57gylw7pjkgfnk";
sha256 = "sha256-7dNJUMZu6YY3076cnjWHRisJZVn1NPRH1VC+cJjfI/8=";
};

nativeBuildInputs = [ makeWrapper ];
4 changes: 2 additions & 2 deletions pkgs/tools/admin/awscli/default.nix
Original file line number Diff line number Diff line change
@@ -28,11 +28,11 @@ let

in with py.pkgs; buildPythonApplication rec {
pname = "awscli";
version = "1.18.202"; # N.B: if you change this, change botocore to a matching version too
version = "1.18.203"; # N.B: if you change this, change botocore to a matching version too

src = fetchPypi {
inherit pname version;
sha256 = "sha256-nlgqIzFELlg8Ck3HCXBx/LDzlM9p2CGKOgA2vS+r2y0=";
sha256 = "sha256-afcXbYKRc9w0Zbuyg/bDA/J/lHm4N4FttUgGk4h4H4k=";
};

postPatch = ''