Merge pull request #147224 from marsam/update-internetarchive

This commit is contained in:
Sandro 2021-11-26 13:12:24 +01:00 committed by GitHub
commit 17f2cd8702
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,15 +15,16 @@
, lib
, glibcLocales
, setuptools
, urllib3
}:
buildPythonPackage rec {
pname = "internetarchive";
version = "2.1.0";
version = "2.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "72094f05df39bb1463f61f928f3a7fa0dd236cab185cb8b7e8eb6c85e09acdc4";
sha256 = "ebd11ecd038c71e75a3aef8d87750b46480169ecaefb23074c4ae48440bf2836";
};
propagatedBuildInputs = [
@ -36,6 +37,7 @@ buildPythonPackage rec {
args
schema
setuptools
urllib3
] ++ lib.optionals (!isPy3k) [ backports_csv ];
checkInputs = [ pytest responses glibcLocales ];