Skip to content

Commit 45afcc1

Browse files
committed
python312Packages.streamlit: 1.39.0 -> 1.40.1, cleanup dependencies
Changelog: https://github.com/streamlit/streamlit/releases/tag/1.40.1
1 parent d34e172 commit 45afcc1

File tree

1 file changed

+5
-20
lines changed

1 file changed

+5
-20
lines changed

pkgs/development/python-modules/streamlit/default.nix

Lines changed: 5 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,13 @@
88
click,
99
fetchPypi,
1010
gitpython,
11-
importlib-metadata,
1211
numpy,
1312
packaging,
1413
pandas,
1514
pillow,
1615
protobuf,
1716
pyarrow,
1817
pydeck,
19-
pympler,
20-
python-dateutil,
2118
pythonOlder,
2219
setuptools,
2320
requests,
@@ -26,56 +23,44 @@
2623
toml,
2724
tornado,
2825
typing-extensions,
29-
tzlocal,
30-
validators,
3126
watchdog,
3227
}:
3328

3429
buildPythonPackage rec {
3530
pname = "streamlit";
36-
version = "1.39.0";
31+
version = "1.40.1";
3732
pyproject = true;
3833

3934
disabled = pythonOlder "3.8";
4035

4136
src = fetchPypi {
4237
inherit pname version;
43-
hash = "sha256-/vneeYPE7mXAjoVgfX/8y1awBIKxBB+mL5DkgV053zo=";
38+
hash = "sha256-HysJ8Etq02aix7TUgQRpfRyLwz9Ivfftk5zATBLTrsY=";
4439
};
4540

4641
build-system = [
4742
setuptools
4843
];
4944

50-
pythonRelaxDeps = [
51-
"packaging"
52-
"tenacity"
53-
];
54-
5545
dependencies = [
5646
altair
5747
blinker
5848
cachetools
5949
click
60-
gitpython
61-
importlib-metadata
6250
numpy
6351
packaging
6452
pandas
6553
pillow
6654
protobuf
6755
pyarrow
68-
pydeck
69-
pympler
70-
python-dateutil
7156
requests
7257
rich
7358
tenacity
7459
toml
75-
tornado
7660
typing-extensions
77-
tzlocal
78-
validators
61+
gitpython
62+
pydeck
63+
tornado
7964
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
8065

8166
# pypi package does not include the tests, but cannot be built with fetchFromGitHub

0 commit comments

Comments
 (0)