depot/third_party/nixpkgs/pkgs/development/python-modules/yfinance/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

58 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.24";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ranaroussi";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-V8yPB01HR+DGrKRXnmERFeC0WZal0nG3lMNVKTa519k=";
};
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 ];
};
}