summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:19:02 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:37:40 -0800
commitdc42927243342491ed7adbff393fcabd897583ea (patch)
tree43859ace3bf3155d5a224314f34d8f6c990a9dd4 /pkgs/development
parent061bb5948583169eda1934229c47ba5146325c88 (diff)
python2Packages.boto3: remove
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python2-modules/boto3/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/development/python2-modules/boto3/default.nix b/pkgs/development/python2-modules/boto3/default.nix
deleted file mode 100644
index c8b8210f6503..000000000000
--- a/pkgs/development/python2-modules/boto3/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, botocore
-, jmespath
-, s3transfer
-, futures ? null
-, docutils
-, nose
-, mock
-, isPy3k
-}:
-
-buildPythonPackage rec {
- pname = "boto3";
- version = "1.17.97"; # N.B: if you change this, change botocore and awscli to a matching version
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "0ab5afc51461c30f27aebef944211d16f47697b98ff8d2e2f6e49e59584853bb";
- };
-
- propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
- checkInputs = [ docutils nose mock ];
-
- checkPhase = ''
- runHook preCheck
- # This method is not in mock. It might have appeared in some versions.
- sed -i 's/action.assert_called_once()/self.assertEqual(action.call_count, 1)/' \
- tests/unit/resources/test_factory.py
- nosetests -d tests/unit --verbose
- runHook postCheck
- '';
-
- # Network access
- doCheck = false;
-
- pythonImportsCheck = [ "boto3" ];
-
- meta = {
- homepage = "https://github.com/boto/boto3";
- license = lib.licenses.asl20;
- description = "AWS SDK for Python";
- longDescription = ''
- Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
- Python, which allows Python developers to write software that makes use of
- services like Amazon S3 and Amazon EC2.
- '';
- };
-}