python312Packages.streamlit: 1.39.0 -> 1.40.1, cleanup dependencies

Changelog: https://github.com/streamlit/streamlit/releases/tag/1.40.1
This commit is contained in:
Nick Cao
2024-11-21 14:58:23 -05:00
parent d34e17271a
commit 45afcc12be
@@ -8,7 +8,6 @@
click,
fetchPypi,
gitpython,
importlib-metadata,
numpy,
packaging,
pandas,
@@ -16,8 +15,6 @@
protobuf,
pyarrow,
pydeck,
pympler,
python-dateutil,
pythonOlder,
setuptools,
requests,
@@ -26,56 +23,44 @@
toml,
tornado,
typing-extensions,
tzlocal,
validators,
watchdog,
}:
buildPythonPackage rec {
pname = "streamlit";
version = "1.39.0";
version = "1.40.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-/vneeYPE7mXAjoVgfX/8y1awBIKxBB+mL5DkgV053zo=";
hash = "sha256-HysJ8Etq02aix7TUgQRpfRyLwz9Ivfftk5zATBLTrsY=";
};
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
gitpython
pydeck
tornado
] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
# pypi package does not include the tests, but cannot be built with fetchFromGitHub