0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
52 lines
989 B
Nix
52 lines
989 B
Nix
{ lib
|
|
, appdirs
|
|
, buildPythonPackage
|
|
, cryptography
|
|
, fetchFromGitHub
|
|
, multitasking
|
|
, numpy
|
|
, pandas
|
|
, pythonOlder
|
|
, requests
|
|
, lxml
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "yfinance";
|
|
version = "0.2.3";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ranaroussi";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-1xO+zz+syuiWeZAxnRIV0va8WOIW2P9elRBtHDk7w1M=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
cryptography
|
|
multitasking
|
|
numpy
|
|
pandas
|
|
requests
|
|
lxml
|
|
];
|
|
|
|
# Tests require internet access
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"yfinance"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|