2020-09-17 19:19:16 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, python, requests }:
|
2018-08-25 16:12:16 -07:00
|
|
|
with lib;
|
2018-08-25 07:34:56 -07:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "requests-aws4auth";
|
2020-08-16 10:31:14 -07:00
|
|
|
version = "1.0";
|
2018-08-25 07:34:56 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-08-16 10:31:14 -07:00
|
|
|
sha256 = "2950f6ff686b5a452a269076d990e4821d959b61cfac319c3d3c6daaa5db55ce";
|
2018-08-25 07:34:56 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ requests ];
|
|
|
|
|
2020-09-17 19:19:16 -07:00
|
|
|
checkPhase = ''
|
|
|
|
cd requests_aws4auth
|
|
|
|
${python.interpreter} test/requests_aws4auth_test.py
|
|
|
|
'';
|
2018-08-25 07:34:56 -07:00
|
|
|
|
2018-08-25 16:12:16 -07:00
|
|
|
meta = {
|
2018-08-25 07:34:56 -07:00
|
|
|
description = "Amazon Web Services version 4 authentication for the Python Requests library.";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/sam-washington/requests-aws4auth";
|
2018-08-25 07:34:56 -07:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.basvandijk ];
|
|
|
|
};
|
|
|
|
}
|