summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-03-19 11:53:02 -0500
committerGitHub <noreply@github.com>2022-03-19 11:53:02 -0500
commitb4a87c062046eb73e4d1e09d95f4590dc1c7077c (patch)
treed3858b4da432e50a36d8c997827b6d17389373d1
parent35a74aa665a681b60d68e3d3400fcaa11690ee50 (diff)
parentc3c4cdb748a415f5d18c03548b2e6b4039baa50b (diff)
downloadnixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar.gz
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar.bz2
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar.lz
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar.xz
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.tar.zst
nixpkgs-b4a87c062046eb73e4d1e09d95f4590dc1c7077c.zip
Merge pull request #164669 from r-ryantm/auto-update/internetarchive
internetarchive: 2.3.0 -> 3.0.0
-rw-r--r--pkgs/development/python-modules/internetarchive/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/internetarchive/default.nix b/pkgs/development/python-modules/internetarchive/default.nix
index d197ba9691b..c50563f5500 100644
--- a/pkgs/development/python-modules/internetarchive/default.nix
+++ b/pkgs/development/python-modules/internetarchive/default.nix
@@ -1,7 +1,6 @@
 { buildPythonPackage
 , fetchPypi
 , pytest
-, six
 , tqdm
 , pyyaml
 , docopt
@@ -10,25 +9,25 @@
 , args
 , schema
 , responses
-, backports_csv
-, isPy3k
 , lib
 , glibcLocales
 , setuptools
 , urllib3
+, pythonOlder
 }:
 
 buildPythonPackage rec {
   pname = "internetarchive";
-  version = "2.3.0";
+  version = "3.0.0";
+
+  disabled = pythonOlder "3.7";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "fa89dc4be3e0a0aee24810a4a754e24adfd07edf710c645b4f642422c6078b8d";
+    sha256 = "sha256-fRcqsT8p/tqXUpU2/9lAEF1IT8Cy5KK0+jKaeVwZshI=";
   };
 
   propagatedBuildInputs = [
-    six
     tqdm
     pyyaml
     docopt
@@ -38,7 +37,7 @@ buildPythonPackage rec {
     schema
     setuptools
     urllib3
-  ] ++ lib.optionals (!isPy3k) [ backports_csv ];
+  ];
 
   checkInputs = [ pytest responses glibcLocales ];