python3Packages.requests-aws4auth: fix build, add missing six dep

This commit is contained in:
Jonathan Ringer 2021-04-07 13:08:06 -07:00 committed by Jonathan Ringer
parent a4c701e7e3
commit 141ece8fe2

View file

@ -1,4 +1,5 @@
{ lib, buildPythonPackage, fetchPypi, python, requests }: { lib, buildPythonPackage, fetchPypi, python, requests, six }:
with lib; with lib;
buildPythonPackage rec { buildPythonPackage rec {
pname = "requests-aws4auth"; pname = "requests-aws4auth";
@ -9,7 +10,7 @@ buildPythonPackage rec {
sha256 = "9a4a5f4a61c49f098f5f669410308ac5b0ea2682fd511ee3a4f9ff73b5bb275a"; sha256 = "9a4a5f4a61c49f098f5f669410308ac5b0ea2682fd511ee3a4f9ff73b5bb275a";
}; };
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [ requests six ];
# pypi package no longer contains tests # pypi package no longer contains tests
doCheck = false; doCheck = false;