lol

Merge pull request #304708 from r-ryantm/auto-update/python312Packages.yfinance

python312Packages.yfinance: 0.2.37 -> 0.2.38

authored by

Fabian Affolter and committed by
GitHub
81df1d68 f76245e6

+25 -24
+25 -24
pkgs/development/python-modules/yfinance/default.nix
··· 1 - { lib 2 - , appdirs 3 - , beautifulsoup4 4 - , buildPythonPackage 5 - , cryptography 6 - , fetchFromGitHub 7 - , frozendict 8 - , html5lib 9 - , multitasking 10 - , numpy 11 - , pandas 12 - , peewee 13 - , pythonOlder 14 - , requests 15 - , lxml 1 + { 2 + lib, 3 + appdirs, 4 + beautifulsoup4, 5 + buildPythonPackage, 6 + cryptography, 7 + fetchFromGitHub, 8 + frozendict, 9 + html5lib, 10 + lxml, 11 + multitasking, 12 + numpy, 13 + pandas, 14 + peewee, 15 + pythonOlder, 16 + requests, 17 + setuptools, 16 18 }: 17 19 18 20 buildPythonPackage rec { 19 21 pname = "yfinance"; 20 - version = "0.2.37"; 21 - format = "setuptools"; 22 + version = "0.2.38"; 23 + pyproject = true; 22 24 23 25 disabled = pythonOlder "3.7"; 24 26 25 27 src = fetchFromGitHub { 26 28 owner = "ranaroussi"; 27 - repo = pname; 29 + repo = "yfinance"; 28 30 rev = "refs/tags/${version}"; 29 - hash = "sha256-rptCZ4Yiz6VbV/woHN6JpRNsZL4SrqepoIw4tYpU4x0="; 31 + hash = "sha256-ZGwtu2vLcE9pM73umhnFwSzjQnGjTOTtVF607ox7I6E="; 30 32 }; 31 33 32 - propagatedBuildInputs = [ 34 + build-system = [ setuptools ]; 35 + 36 + dependencies = [ 33 37 appdirs 34 38 beautifulsoup4 35 39 cryptography ··· 46 50 # Tests require internet access 47 51 doCheck = false; 48 52 49 - pythonImportsCheck = [ 50 - "yfinance" 51 - ]; 53 + pythonImportsCheck = [ "yfinance" ]; 52 54 53 55 meta = with lib; { 54 56 description = "Module to doiwnload Yahoo! Finance market data"; 55 - mainProgram = "sample"; 56 57 homepage = "https://github.com/ranaroussi/yfinance"; 57 58 changelog = "https://github.com/ranaroussi/yfinance/blob/${version}/CHANGELOG.rst"; 58 59 license = licenses.asl20;