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
|
{
lib,
stdenv,
altair,
blinker,
buildPythonPackage,
cachetools,
click,
fetchPypi,
gitpython,
numpy,
packaging,
pandas,
pillow,
protobuf,
pyarrow,
pydeck,
setuptools,
requests,
rich,
tenacity,
toml,
tornado,
typing-extensions,
watchdog,
}:
buildPythonPackage (finalAttrs: {
pname = "streamlit";
version = "1.53.0";
pyproject = true;
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-ARQRbTRYny5lK/Ssc1o6ymmAfmWfkvmcmOe2INAAg48=";
};
build-system = [ setuptools ];
pythonRelaxDeps = [ "packaging" ];
dependencies = [
altair
blinker
cachetools
click
numpy
packaging
pandas
pillow
protobuf
pyarrow
requests
rich
tenacity
toml
typing-extensions
gitpython
pydeck
tornado
]
++ 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 = {
homepage = "https://streamlit.io/";
changelog = "https://github.com/streamlit/streamlit/releases/tag/${finalAttrs.version}";
description = "Fastest way to build custom ML tools";
mainProgram = "streamlit";
maintainers = with lib.maintainers; [
natsukium
yrashk
];
license = lib.licenses.asl20;
};
})
|