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: 5c78b12927fd
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8234f4ab49a0
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 2, 2020

  1. aws-adfs: 1.21.2 -> 1.24.3

    r-ryantm authored and Jon committed Apr 2, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    benjamn Ben Newman
    Copy the full SHA
    8234f4a View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/python-modules/aws-adfs/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/python-modules/aws-adfs/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ lib, buildPythonPackage, fetchPypi
, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3
, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, botocore
, requests, requests-kerberos, click, configparser, fido2, isPy27 }:

buildPythonPackage rec {
pname = "aws-adfs";
version = "1.21.2";
version = "1.24.3";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "ba96e71404474350b2c3ae4d5cb2dd25e9267b6d0680933c5711a51ea364e3bc";
sha256 = "0bcjlf5dkg2q0db0ra1ssa3hy98spflkd3ykhmlyv65rkgx8w1wv";
};

# Relax version constraint
@@ -24,11 +24,11 @@ buildPythonPackage rec {
LC_ALL = "en_US.UTF-8";

checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ];
propagatedBuildInputs = [ lxml boto3 requests requests-kerberos click configparser fido2 ];
propagatedBuildInputs = [ botocore lxml requests requests-kerberos click configparser fido2 ];

meta = with lib; {
description = "Command line tool to ease aws cli authentication against ADFS";
homepage = https://github.com/venth/aws-adfs;
homepage = "https://github.com/venth/aws-adfs";
license = licenses.psfl;
maintainers = [ maintainers.bhipple ];
};