1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
{
lib,
stdenv,
altair,
blinker,
buildPythonPackage,
cachetools,
click,
fetchPypi,
gitpython,
importlib-metadata,
numpy,
packaging,
pandas,
pillow,
protobuf,
pyarrow,
pydeck,
pympler,
python-dateutil,
pythonOlder,
setuptools,
requests,
rich,
tenacity,
toml,
tornado,
typing-extensions,
tzlocal,
validators,
watchdog,
}:
buildPythonPackage rec {
pname = "streamlit";
version = "1.38.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-xL82s++HFJntRZRXSDRYMRP5Pwd90wNdUW0pV4byrWM=";
};
build-system = [
setuptools
];
pythonRelaxDeps = [
"packaging"
"tenacity"
];
dependencies = [
altair
blinker
cachetools
click
gitpython
importlib-metadata
numpy
packaging
pandas
pillow
protobuf
pyarrow
pydeck
pympler
python-dateutil
requests
rich
tenacity
toml
tornado
typing-extensions
tzlocal
validators
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
# pypi package does not include the tests, but cannot be built with fetchFromGitHub
doCheck = false;
pythonImportsCheck = [ "streamlit" ];
postInstall = ''
rm $out/bin/streamlit.cmd # remove windows helper
'';
meta = with lib; {
homepage = "https://streamlit.io/";
changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}";
description = "Fastest way to build custom ML tools";
mainProgram = "streamlit";
maintainers = with maintainers; [
natsukium
yrashk
];
license = licenses.asl20;
};
}
|