pythonPackages.aws-adfs: 1.19.1 -> 1.20.0; fix build

This commit is contained in:
Christine Koppelt 2019-12-13 09:47:13 +01:00 committed by Jon
parent 418ad571c3
commit 7f2e8f6367

View file

@ -1,13 +1,15 @@
{ lib, buildPythonPackage, fetchPypi
, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3, requests, click, configparser }:
, pytest, pytestrunner, pytestcov, mock, glibcLocales, lxml, boto3
, requests, click, configparser, fido2, isPy27 }:
buildPythonPackage rec {
pname = "aws-adfs";
version = "1.19.1";
version = "1.20.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "20b2ad44d19aa494fa11cb2d1290359b3a7a0c6c8908179b4af0c9367d83e370";
sha256 = "1j18ffq5z8bcajavnlpbfhxrcadld5iv5gsfxg543yvdsp6hn2dg";
};
# Relax version constraint
@ -22,7 +24,7 @@ buildPythonPackage rec {
LC_ALL = "en_US.UTF-8";
checkInputs = [ glibcLocales pytest pytestrunner pytestcov mock ];
propagatedBuildInputs = [ lxml boto3 requests click configparser ];
propagatedBuildInputs = [ lxml boto3 requests click configparser fido2 ];
meta = with lib; {
description = "Command line tool to ease aws cli authentication against ADFS";