587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
79 lines
1.5 KiB
Nix
79 lines
1.5 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, docopt
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, requests
|
|
, jsonpatch
|
|
, schema
|
|
, responses
|
|
, setuptools
|
|
, tqdm
|
|
, urllib3
|
|
, pythonOlder
|
|
, importlib-metadata
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "internetarchive";
|
|
version = "4.0.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jjjake";
|
|
repo = "internetarchive";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-U6idxc5U2Bt581c/vnGgIou5+hoEJJZSPCo97MEDaW4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
tqdm
|
|
docopt
|
|
requests
|
|
jsonpatch
|
|
schema
|
|
urllib3
|
|
] ++ lib.optionals (pythonOlder "3.10") [
|
|
importlib-metadata
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
responses
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Tests require network access
|
|
"test_get_item_with_kwargs"
|
|
"test_upload"
|
|
"test_upload_metadata"
|
|
"test_upload_queue_derive"
|
|
"test_upload_validate_identifie"
|
|
"test_upload_validate_identifier"
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Tests require network access
|
|
"tests/cli/test_ia.py"
|
|
"tests/cli/test_ia_download.py"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"internetarchive"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A Python and Command-Line Interface to Archive.org";
|
|
homepage = "https://github.com/jjjake/internetarchive";
|
|
changelog = "https://github.com/jjjake/internetarchive/blob/v${version}/HISTORY.rst";
|
|
license = licenses.agpl3Plus;
|
|
maintainers = [ maintainers.marsam ];
|
|
mainProgram = "ia";
|
|
};
|
|
}
|