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

48 lines
833 B
Nix
Raw Normal View History

{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
2018-11-20 02:58:35 -08:00
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
2019-10-16 02:43:03 -07:00
version = "1.12.250"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
2019-10-16 02:43:03 -07:00
sha256 = "ef3257f05efb5b54e447bfeae9802f7e82d0477ee26be8601a1e3611b317aba5";
};
outputs = [ "out" "dev" ];
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
2018-11-20 02:58:35 -08:00
urllib3
];
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";
};
}