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 17 }: 18 19 buildPythonPackage rec { 20 pname = "asf-search"; 21 - version = "7.0.8"; 22 - format = "setuptools"; 23 24 disabled = pythonOlder "3.7"; 25 ··· 27 owner = "asfadmin"; 28 repo = "Discovery-asf_search"; 29 rev = "refs/tags/v${version}"; 30 - hash = "sha256-wmTt6JFuigpFo/0s9DmKfAZT0dPPyoNeVRlh8vz/jkY="; 31 }; 32 33 - propagatedBuildInputs = [ 34 dateparser 35 importlib-metadata 36 numpy ··· 48 tenacity 49 ]; 50 51 - pythonImportsCheck = [ 52 - "asf_search" 53 - ]; 54 55 meta = with lib; { 56 - changelog = "https://github.com/asfadmin/Discovery-asf_search/blob/${src.rev}/CHANGELOG.md"; 57 description = "Python wrapper for the ASF SearchAPI"; 58 homepage = "https://github.com/asfadmin/Discovery-asf_search"; 59 license = licenses.bsd3; 60 maintainers = with maintainers; [ bzizou ]; 61 };
··· 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, 20 }: 21 22 buildPythonPackage rec { 23 pname = "asf-search"; 24 + version = "7.0.9"; 25 + pyproject = true; 26 27 disabled = pythonOlder "3.7"; 28 ··· 30 owner = "asfadmin"; 31 repo = "Discovery-asf_search"; 32 rev = "refs/tags/v${version}"; 33 + hash = "sha256-CD9Up4h23dplTt51zif+4ZdW0qczRUz2hCOwUOOlS24="; 34 }; 35 36 + pythonRelaxDeps = [ "tenacity" ]; 37 + 38 + build-system = [ setuptools-scm ]; 39 + 40 + nativeBuildInputs = [ pythonRelaxDepsHook ]; 41 + 42 + dependencies = [ 43 dateparser 44 importlib-metadata 45 numpy ··· 57 tenacity 58 ]; 59 60 + pythonImportsCheck = [ "asf_search" ]; 61 62 meta = with lib; { 63 description = "Python wrapper for the ASF SearchAPI"; 64 homepage = "https://github.com/asfadmin/Discovery-asf_search"; 65 + changelog = "https://github.com/asfadmin/Discovery-asf_search/blob/${version}/CHANGELOG.md"; 66 license = licenses.bsd3; 67 maintainers = with maintainers; [ bzizou ]; 68 };