1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

python3Packages.botocore: 1.20.39 -> 1.20.40

This commit is contained in:
Robert Schütz 2021-03-30 17:42:32 +02:00
parent 24466250ec
commit 9fde535097

View file

@ -1,4 +1,5 @@
{ buildPythonPackage
{ lib
, buildPythonPackage
, fetchPypi
, dateutil
, jmespath
@ -12,11 +13,11 @@
buildPythonPackage rec {
pname = "botocore";
version = "1.20.39"; # N.B: if you change this, change boto3 and awscli to a matching version
version = "1.20.40"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-KFBtI/+pq/VmbCyQnH7cg6ERLNRP506xpJYN9WFTHpg=";
sha256 = "sha256-ajWpl3zb16g52UjdX549JgwZt93nTgqETJcgaITTu6A=";
};
propagatedBuildInputs = [
@ -37,9 +38,11 @@ buildPythonPackage rec {
# Network access
doCheck = false;
meta = {
pythonImportsCheck = [ "botocore" ];
meta = with lib; {
homepage = "https://github.com/boto/botocore";
license = "bsd";
license = licenses.asl20;
description = "A low-level interface to a growing number of Amazon Web Services";
};
}