nixpkgs/pkgs/development/python-modules/yfinance/default.nix

59 lines
1.1 KiB
Nix

{ lib
, appdirs
, beautifulsoup4
, buildPythonPackage
, cryptography
, fetchFromGitHub
, frozendict
, html5lib
, multitasking
, numpy
, pandas
, pythonOlder
, requests
, lxml
}:
buildPythonPackage rec {
pname = "yfinance";
version = "0.2.28";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ranaroussi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-kTbQnpha4OHu5Xguo6v90uFpcXY1e8JJsJUo4ZbaCfk=";
};
propagatedBuildInputs = [
appdirs
beautifulsoup4
cryptography
frozendict
html5lib
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 ];
};
}