python2Packages.botocore: remove

This commit is contained in:
Robert Schütz 2022-12-09 08:20:48 -08:00
parent 7cb6c63e86
commit cb695919b2
2 changed files with 0 additions and 48 deletions

View file

@ -1,46 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
, python-dateutil
, jmespath
, docutils
, simplejson
, mock
, nose
, urllib3
}:
buildPythonPackage rec {
pname = "botocore";
version = "1.20.97"; # N.B: if you change this, change boto3 and awscli to a matching version
src = fetchPypi {
inherit pname version;
sha256 = "f7e119cf3e0f4a36100f0e983583afa91a84fb27c479a1716820aee4f2e190ab";
};
propagatedBuildInputs = [
python-dateutil
jmespath
docutils
simplejson
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";
};
}

View file

@ -9,8 +9,6 @@ with self; with super; {
bootstrapped-pip = toPythonModule (callPackage ../development/python2-modules/bootstrapped-pip { });
botocore = callPackage ../development/python2-modules/botocore {};
certifi = callPackage ../development/python2-modules/certifi { };
configparser = callPackage ../development/python2-modules/configparser { };