depot/third_party/nixpkgs/pkgs/development/python-modules/yfinance/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

77 lines
1.3 KiB
Nix

{
lib,
beautifulsoup4,
buildPythonPackage,
cryptography,
fetchFromGitHub,
frozendict,
html5lib,
lxml,
multitasking,
numpy,
pandas,
peewee,
platformdirs,
pythonOlder,
pytz,
requests-cache,
requests-ratelimiter,
requests,
scipy,
setuptools,
}:
buildPythonPackage rec {
pname = "yfinance";
version = "0.2.40";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ranaroussi";
repo = "yfinance";
rev = "refs/tags/${version}";
hash = "sha256-y3vcgPhksW8g0WpqVgJej7s+aIj9zaAjBjSm8d7yrjs=";
};
build-system = [ setuptools ];
dependencies = [
beautifulsoup4
cryptography
frozendict
html5lib
lxml
multitasking
numpy
pandas
peewee
platformdirs
pytz
requests
];
passthru.optional-dependencies = {
nospam = [
requests-cache
requests-ratelimiter
];
repair = [
scipy
];
};
# 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 ];
};
}