python312Packages.asf-search: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-11 23:30:20 +02:00
parent 8db206c6eb
commit ad5b7186b0

View File

@ -1,20 +1,21 @@
{ lib {
, buildPythonPackage lib,
, dateparser buildPythonPackage,
, defusedxml dateparser,
, fetchFromGitHub defusedxml,
, importlib-metadata fetchFromGitHub,
, numpy importlib-metadata,
, pytestCheckHook numpy,
, python-dateutil pytestCheckHook,
, pythonOlder python-dateutil,
, pytz pythonOlder,
, remotezip pytz,
, requests remotezip,
, requests-mock requests,
, setuptools requests-mock,
, shapely setuptools,
, tenacity shapely,
tenacity,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -31,9 +32,7 @@ buildPythonPackage rec {
hash = "sha256-CD9Up4h23dplTt51zif+4ZdW0qczRUz2hCOwUOOlS24="; hash = "sha256-CD9Up4h23dplTt51zif+4ZdW0qczRUz2hCOwUOOlS24=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
dateparser dateparser
@ -53,9 +52,7 @@ buildPythonPackage rec {
tenacity tenacity
]; ];
pythonImportsCheck = [ pythonImportsCheck = [ "asf_search" ];
"asf_search"
];
meta = with lib; { meta = with lib; {
description = "Python wrapper for the ASF SearchAPI"; description = "Python wrapper for the ASF SearchAPI";