Merge pull request #303415 from r-ryantm/auto-update/python312Packages.asf-search

python312Packages.asf-search: 7.0.8 -> 7.0.9

authored by Weijia Wang and committed by GitHub 25014fa6 f64911ab

+31 -24
+31 -24
pkgs/development/python-modules/asf-search/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , dateparser 4 - , defusedxml 5 - , fetchFromGitHub 6 - , importlib-metadata 7 - , numpy 8 - , pytestCheckHook 9 - , python-dateutil 10 - , pythonOlder 11 - , pytz 12 - , remotezip 13 - , requests 14 - , requests-mock 15 - , shapely 16 - , tenacity 1 + { 2 + lib, 3 + buildPythonPackage, 4 + dateparser, 5 + defusedxml, 6 + fetchFromGitHub, 7 + importlib-metadata, 8 + numpy, 9 + pytestCheckHook, 10 + python-dateutil, 11 + pythonOlder, 12 + pythonRelaxDepsHook, 13 + pytz, 14 + remotezip, 15 + requests-mock, 16 + requests, 17 + setuptools-scm, 18 + shapely, 19 + tenacity, 17 20 }: 18 21 19 22 buildPythonPackage rec { 20 23 pname = "asf-search"; 21 - version = "7.0.8"; 22 - format = "setuptools"; 24 + version = "7.0.9"; 25 + pyproject = true; 23 26 24 27 disabled = pythonOlder "3.7"; 25 28 ··· 27 30 owner = "asfadmin"; 28 31 repo = "Discovery-asf_search"; 29 32 rev = "refs/tags/v${version}"; 30 - hash = "sha256-wmTt6JFuigpFo/0s9DmKfAZT0dPPyoNeVRlh8vz/jkY="; 33 + hash = "sha256-CD9Up4h23dplTt51zif+4ZdW0qczRUz2hCOwUOOlS24="; 31 34 }; 32 35 33 - propagatedBuildInputs = [ 36 + pythonRelaxDeps = [ "tenacity" ]; 37 + 38 + build-system = [ setuptools-scm ]; 39 + 40 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 41 + 42 + dependencies = [ 34 43 dateparser 35 44 importlib-metadata 36 45 numpy ··· 48 57 tenacity 49 58 ]; 50 59 51 - pythonImportsCheck = [ 52 - "asf_search" 53 - ]; 60 + pythonImportsCheck = [ "asf_search" ]; 54 61 55 62 meta = with lib; { 56 - changelog = "https://github.com/asfadmin/Discovery-asf_search/blob/${src.rev}/CHANGELOG.md"; 57 63 description = "Python wrapper for the ASF SearchAPI"; 58 64 homepage = "https://github.com/asfadmin/Discovery-asf_search"; 65 + changelog = "https://github.com/asfadmin/Discovery-asf_search/blob/${version}/CHANGELOG.md"; 59 66 license = licenses.bsd3; 60 67 maintainers = with maintainers; [ bzizou ]; 61 68 };