Merge pull request #164669 from r-ryantm/auto-update/internetarchive

internetarchive: 2.3.0 -> 3.0.0
This commit is contained in:
Mario Rodas 2022-03-19 11:53:02 -05:00 committed by GitHub
commit b4a87c0620
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];