nixpkgs/pkgs/development/python-modules/botocore/default.nix
2020-12-22 14:26:34 -05:00

50 lines
896 B
Nix

{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.19.41"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-VKillJeoO6LYn7lPht0HtiLXtfHW6ZJSIuu8ResNY6w=";
};
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
urllib3
];
postPatch = ''
substituteInPlace setup.py --replace "docutils>=0.10,<0.16" "docutils>=0.10"
'';
checkInputs = [ mock nose ];
checkPhase = ''
nosetests -v
'';
# Network access
doCheck = false;
meta = {
homepage = "https://github.com/boto/botocore";
license = "bsd";
description = "A low-level interface to a growing number of Amazon Web Services";
};
}