blob: 0e969d47a6bb9a41a581eade451b877845390f76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
feedparser,
requests,
# tests
mock,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "arxiv";
version = "2.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "lukasschwab";
repo = "arxiv.py";
tag = version;
hash = "sha256-7TGepKZ6Y/WTgJK70oOGR2TlXRwK0YgzslXAnklRSCA=";
};
build-system = [ setuptools ];
dependencies = [
feedparser
requests
];
nativeCheckInputs = [
pytestCheckHook
mock
];
disabledTests = [
# Require network access
"test_from_feed_entry"
"test_download_from_query"
"test_download_tarfile_from_query"
"test_download_with_custom_slugify_from_query"
"test_get_short_id"
"test_invalid_format_id"
"test_invalid_id"
"test_legacy_ids"
"test_max_results"
"test_missing_title"
"test_no_duplicates"
"test_nonexistent_id_in_list"
"test_offset"
"test_query_page_count"
"test_result_shape"
"test_search_results_offset"
];
pythonImportsCheck = [ "arxiv" ];
meta = {
description = "Python wrapper for the arXiv API";
homepage = "https://github.com/lukasschwab/arxiv.py";
changelog = "https://github.com/lukasschwab/arxiv.py/releases/tag/${src.tag}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.octvs ];
};
}
|