summaryrefslogtreecommitdiffstats
path: root/pkgs/development/python2-modules
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-09 08:20:09 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-09 08:37:40 -0800
commit7cb6c63e86b73c325c85922ec6860e00944535a9 (patch)
tree3ec7d3984e442ad048a94e32c7a28ddb6571e2bf /pkgs/development/python2-modules
parentdc42927243342491ed7adbff393fcabd897583ea (diff)
python2Packages.s3transfer: remove
Diffstat (limited to 'pkgs/development/python2-modules')
-rw-r--r--pkgs/development/python2-modules/s3transfer/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/development/python2-modules/s3transfer/default.nix b/pkgs/development/python2-modules/s3transfer/default.nix
deleted file mode 100644
index 8cfd324f00a5..000000000000
--- a/pkgs/development/python2-modules/s3transfer/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib
-, fetchPypi
-, pythonOlder
-, buildPythonPackage
-, docutils
-, mock
-, nose
-, coverage
-, wheel
-, unittest2
-, botocore
-, futures ? null
-}:
-
-buildPythonPackage rec {
- pname = "s3transfer";
- version = "0.4.2";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "sha256-ywIvSxZVHt67sxo3fT8JYA262nNj2MXbeXbn9Hcy4bI=";
- };
-
- propagatedBuildInputs =
- [
- botocore
- ] ++ lib.optional (pythonOlder "3") futures;
-
- buildInputs = [
- docutils
- mock
- nose
- coverage
- wheel
- unittest2
- ];
-
- checkPhase = ''
- pushd s3transfer/tests
- nosetests -v unit/ functional/
- popd
- '';
-
- # version on pypi has no tests/ dir
- doCheck = false;
-
- meta = with lib; {
- homepage = "https://github.com/boto/s3transfer";
- license = licenses.asl20;
- description = "A library for managing Amazon S3 transfers";
- };
-}