nixpkgs/pkgs/development/python-modules/botocore/default.nix

50 lines
896 B
Nix
Raw Normal View History

{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
2018-11-20 10:58:35 +00:00
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.19.47"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-FVhKhtbLH5TqeF6NPJj67/jd0BBTVuHBBhGNmsEvqJE=";
};
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
2018-11-20 10:58:35 +00:00
urllib3
];
postPatch = ''
2020-06-16 16:14:30 +01:00
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";
};
}