summary refs log tree commit diff
path: root/pkgs/development/python-modules/botocore
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2022-01-16 07:34:26 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2022-01-16 10:00:16 +0100
commitae18d68b6b117528e6cd72325ead36b48562d43f (patch)
tree9f9d765a7208d5d436184dc3656b164fd0581f7f /pkgs/development/python-modules/botocore
parent2027fb600d891379c53c4762463e65d040359682 (diff)
downloadnixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.gz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.bz2
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.lz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.xz
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.tar.zst
nixpkgs-ae18d68b6b117528e6cd72325ead36b48562d43f.zip
python2.pkgs: move expressions into python2-modules/ folder
Another step in further separating python2 from python3.
Diffstat (limited to 'pkgs/development/python-modules/botocore')
-rw-r--r--pkgs/development/python-modules/botocore/1_20.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/development/python-modules/botocore/1_20.nix b/pkgs/development/python-modules/botocore/1_20.nix
deleted file mode 100644
index d05c2decf49..00000000000
--- a/pkgs/development/python-modules/botocore/1_20.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, python-dateutil
-, jmespath
-, docutils
-, ordereddict
-, 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
-    ordereddict
-    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";
-  };
-}