mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
[Backport release-26.05] python3Packages.streamlit: 1.55.0 -> 1.58.0 (#531615)
This commit is contained in:
commit
df5776950f
1 changed files with 20 additions and 6 deletions
|
|
@ -2,12 +2,15 @@
|
|||
lib,
|
||||
stdenv,
|
||||
altair,
|
||||
anyio,
|
||||
blinker,
|
||||
buildPythonPackage,
|
||||
cachetools,
|
||||
click,
|
||||
fetchPypi,
|
||||
gitpython,
|
||||
httptools,
|
||||
itsdangerous,
|
||||
numpy,
|
||||
packaging,
|
||||
pandas,
|
||||
|
|
@ -15,24 +18,28 @@
|
|||
protobuf,
|
||||
pyarrow,
|
||||
pydeck,
|
||||
setuptools,
|
||||
python-multipart,
|
||||
requests,
|
||||
rich,
|
||||
setuptools,
|
||||
starlette,
|
||||
tenacity,
|
||||
toml,
|
||||
tornado,
|
||||
typing-extensions,
|
||||
uvicorn,
|
||||
watchdog,
|
||||
websockets,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "streamlit";
|
||||
version = "1.55.0";
|
||||
version = "1.58.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit (finalAttrs) pname version;
|
||||
hash = "sha256-AV5RK70C0AD0BH5REY3AhrcOfZxGtKEaM8JQlzE3liY=";
|
||||
hash = "sha256-eKIucIWwU6985UREK/S2cHceaMUJuhvaoFa6Bwj0nD0=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
|
@ -44,23 +51,30 @@ buildPythonPackage (finalAttrs: {
|
|||
|
||||
dependencies = [
|
||||
altair
|
||||
anyio
|
||||
blinker
|
||||
cachetools
|
||||
click
|
||||
gitpython
|
||||
httptools
|
||||
itsdangerous
|
||||
numpy
|
||||
packaging
|
||||
pandas
|
||||
pillow
|
||||
protobuf
|
||||
pyarrow
|
||||
pydeck
|
||||
python-multipart
|
||||
requests
|
||||
rich
|
||||
starlette
|
||||
tenacity
|
||||
toml
|
||||
typing-extensions
|
||||
gitpython
|
||||
pydeck
|
||||
tornado
|
||||
typing-extensions
|
||||
uvicorn
|
||||
websockets
|
||||
]
|
||||
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ watchdog ];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue