tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.yfinance: format with nixfmt
Fabian Affolter
2 years ago
cd839afe
84065cfa
+19
-22
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
yfinance
default.nix
+19
-22
pkgs/development/python-modules/yfinance/default.nix
···
1
-
{ lib
2
-
, appdirs
3
-
, beautifulsoup4
4
-
, buildPythonPackage
5
-
, cryptography
6
-
, fetchFromGitHub
7
-
, frozendict
8
-
, html5lib
9
-
, lxml
10
-
, multitasking
11
-
, numpy
12
-
, pandas
13
-
, peewee
14
-
, pythonOlder
15
-
, requests
16
-
, setuptools
0
17
}:
18
19
buildPythonPackage rec {
···
30
hash = "sha256-ZGwtu2vLcE9pM73umhnFwSzjQnGjTOTtVF607ox7I6E=";
31
};
32
33
-
build-system = [
34
-
setuptools
35
-
];
36
37
dependencies = [
38
appdirs
···
51
# Tests require internet access
52
doCheck = false;
53
54
-
pythonImportsCheck = [
55
-
"yfinance"
56
-
];
57
58
meta = with lib; {
59
description = "Module to doiwnload Yahoo! Finance market data";
···
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,
18
}:
19
20
buildPythonPackage rec {
···
31
hash = "sha256-ZGwtu2vLcE9pM73umhnFwSzjQnGjTOTtVF607ox7I6E=";
32
};
33
34
+
build-system = [ setuptools ];
0
0
35
36
dependencies = [
37
appdirs
···
50
# Tests require internet access
51
doCheck = false;
52
53
+
pythonImportsCheck = [ "yfinance" ];
0
0
54
55
meta = with lib; {
56
description = "Module to doiwnload Yahoo! Finance market data";