nixpkgs/pkgs/development/python-modules/botocore/default.nix
Dan Peebles d1994ebd8a boto{core,3}, awscli: upgrade
I upgrade these all at once because they depend on one another and
often dislike being upgraded individually. So let's make a single
atomic commit!
2018-07-02 16:49:59 -04:00

44 lines
695 B
Nix

{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.10.48";
src = fetchPypi {
inherit pname version;
sha256 = "1432drc7482nwrppwkk1i6ars3wz9w2g9rsxkz5nlxmyf9qm260j";
};
propagatedBuildInputs = [
dateutil
jmespath
docutils
ordereddict
simplejson
];
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";
};
}