nixpkgs/pkgs/development/python-modules/yfinance/default.nix
2023-01-05 13:20:42 +01:00

53 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 ];
};
}