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

49 lines
856 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
2018-11-20 10:58:35 +00:00
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.20.49"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "sha256-9/ED+gZRxp3TYMfQ7Nh0hUMD3lzAhp4MvCgYpSuqzGk=";
};
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
2018-11-20 10:58:35 +00:00
urllib3
];
checkInputs = [ mock nose ];
checkPhase = ''
nosetests -v
'';
# Network access
doCheck = false;
pythonImportsCheck = [ "botocore" ];
meta = with lib; {
homepage = "https://github.com/boto/botocore";
license = licenses.asl20;
description = "A low-level interface to a growing number of Amazon Web Services";
};
}