python312Packages.yfinance: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-17 08:32:40 +02:00
parent 84065cfaa7
commit cd839afeed

View File

@ -1,19 +1,20 @@
{ lib {
, appdirs lib,
, beautifulsoup4 appdirs,
, buildPythonPackage beautifulsoup4,
, cryptography buildPythonPackage,
, fetchFromGitHub cryptography,
, frozendict fetchFromGitHub,
, html5lib frozendict,
, lxml html5lib,
, multitasking lxml,
, numpy multitasking,
, pandas numpy,
, peewee pandas,
, pythonOlder peewee,
, requests pythonOlder,
, setuptools requests,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -30,9 +31,7 @@ buildPythonPackage rec {
hash = "sha256-ZGwtu2vLcE9pM73umhnFwSzjQnGjTOTtVF607ox7I6E="; hash = "sha256-ZGwtu2vLcE9pM73umhnFwSzjQnGjTOTtVF607ox7I6E=";
}; };
build-system = [ build-system = [ setuptools ];
setuptools
];
dependencies = [ dependencies = [
appdirs appdirs
@ -51,9 +50,7 @@ buildPythonPackage rec {
# Tests require internet access # Tests require internet access
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "yfinance" ];
"yfinance"
];
meta = with lib; { meta = with lib; {
description = "Module to doiwnload Yahoo! Finance market data"; description = "Module to doiwnload Yahoo! Finance market data";