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: ae4dc14f0b4d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 82f80f4cfa8e
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 3, 2018

  1. awslogs: use python3Packages

    Robert Schütz committed Aug 3, 2018
    Copy the full SHA
    e2a8124 View commit details

Commits on Aug 4, 2018

  1. Merge pull request #44420 from dotlambda/awslogs-python3

    awslogs: use python3Packages
    FRidh authored Aug 4, 2018
    Copy the full SHA
    82f80f4 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/admin/awslogs/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/admin/awslogs/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, python3Packages }:

pythonPackages.buildPythonApplication rec {
name = "awslogs-${version}";
python3Packages.buildPythonApplication rec {
pname = "awslogs";
version = "0.10";

src = fetchFromGitHub {
@@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec {

doCheck = false;

propagatedBuildInputs = with pythonPackages; [
propagatedBuildInputs = with python3Packages; [
boto3 termcolor dateutil docutils
];