Merge pull request #206821 from fabaff/yfinance-bump

python310Packages.yfinance: 0.1.77 -> 0.1.93
This commit is contained in:
Fabian Affolter 2022-12-19 10:15:52 +01:00 committed by GitHub
commit 7c8a7d8d8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, appdirs
, buildPythonPackage
, cryptography
, fetchFromGitHub
, multitasking
, numpy
@ -12,7 +13,7 @@
buildPythonPackage rec {
pname = "yfinance";
version = "0.1.77";
version = "0.1.93";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,11 +22,12 @@ buildPythonPackage rec {
owner = "ranaroussi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-gg9wX3WWacS5BmbR1wgdicFxhPN5b45KH0+obWmJ65g=";
hash = "sha256-AyuIngXReI4PX554SuGIgoQoklFieZiEZzeVBcvPvEk=";
};
propagatedBuildInputs = [
appdirs
cryptography
multitasking
numpy
pandas
@ -41,8 +43,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "Yahoo! Finance market data downloader (+faster Pandas Datareader)";
homepage = "https://aroussi.com/post/python-yahoo-finance";
description = "Module to doiwnload Yahoo! Finance market data";
homepage = "https://github.com/ranaroussi/yfinance";
changelog = "https://github.com/ranaroussi/yfinance/blob/${version}/CHANGELOG.rst";
license = licenses.asl20;
maintainers = with maintainers; [ drewrisinger ];
};