From d830b9396f1607577cfa5a9b79808338b2a863a4 Mon Sep 17 00:00:00 2001 From: octvs Date: Sat, 9 Nov 2024 18:49:42 +0100 Subject: [PATCH] python312Packages.arxiv: init at 2.1.0 --- .../python-modules/arxiv/default.nix | 63 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 65 insertions(+) create mode 100644 pkgs/development/python-modules/arxiv/default.nix diff --git a/pkgs/development/python-modules/arxiv/default.nix b/pkgs/development/python-modules/arxiv/default.nix new file mode 100644 index 0000000000000..c4e4516e99b68 --- /dev/null +++ b/pkgs/development/python-modules/arxiv/default.nix @@ -0,0 +1,63 @@ +{ + lib, + buildPythonPackage, + fetchFromGitHub, + feedparser, + mock, + pytestCheckHook, + requests, + setuptools, +}: +buildPythonPackage rec { + pname = "arxiv"; + version = "2.1.3"; + pyproject = true; + + src = fetchFromGitHub { + owner = "lukasschwab"; + repo = "arxiv.py"; + rev = "refs/tags/${version}"; + hash = "sha256-Niu3N0QTVxucboQx1FQq1757Hjj1VVWeDZn7O7YtjWY="; + }; + + build-system = [ setuptools ]; + + dependencies = [ + feedparser + requests + ]; + + nativeCheckInputs = [ + pytestCheckHook + mock + ]; + + disabledTests = [ + "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/${version}"; + license = lib.licenses.mit; + maintainers = [ lib.maintainers.octvs ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7cbaa4b090f14..f45cf8a237519 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -810,6 +810,8 @@ self: super: with self; { arviz = callPackage ../development/python-modules/arviz { }; + arxiv = callPackage ../development/python-modules/arxiv { }; + arxiv2bib = callPackage ../development/python-modules/arxiv2bib { }; asana = callPackage ../development/python-modules/asana { };