summary refs log blame commit diff
path: root/pkgs/development/python-modules/botocore/default.nix
blob: 75ce31530cf1f02d57ffccbdc53075f87567f5e6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                        
                     
                      


                          
                                                                                
























                                                                                     
{ buildPythonPackage
, fetchPypi
, dateutil
, jmespath
, docutils
, ordereddict
, simplejson
, mock
, nose
}:

buildPythonPackage rec {
  pname = "botocore";
  version = "1.12.42";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0e495bcf2e474b82da7938b35ad2f71e28384c246b47ca131779f736621da504";
  };

  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";
  };
}