summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2026-01-18 00:35:22 +0000
committerGitHub <noreply@github.com>2026-01-18 00:35:22 +0000
commit464e15152fd3c9c4a7460cde339f545e0be00c66 (patch)
tree61b49be13aeef5015554670a76da3e73cb575b55
parent508b66e8bb252f184984ed09a5e32c2e230f1a66 (diff)
parent232a75b8c582297a426d062c7462d753da34022e (diff)
python3Packages.streamlit: 1.52.2 -> 1.53.0 (#480558)
-rw-r--r--pkgs/development/python-modules/streamlit/default.nix16
1 files changed, 7 insertions, 9 deletions
diff --git a/pkgs/development/python-modules/streamlit/default.nix b/pkgs/development/python-modules/streamlit/default.nix
index fcb33980d7de..a59295d5d6fb 100644
--- a/pkgs/development/python-modules/streamlit/default.nix
+++ b/pkgs/development/python-modules/streamlit/default.nix
@@ -25,19 +25,17 @@
watchdog,
}:
-buildPythonPackage rec {
+buildPythonPackage (finalAttrs: {
pname = "streamlit";
- version = "1.52.2";
+ version = "1.53.0";
pyproject = true;
src = fetchPypi {
- inherit pname version;
- hash = "sha256-ZKTdqLxc3Te/1JDpO7U9o1qu+Ub8/Cg6eYDazfFlEIs=";
+ inherit (finalAttrs) pname version;
+ hash = "sha256-ARQRbTRYny5lK/Ssc1o6ymmAfmWfkvmcmOe2INAAg48=";
};
- build-system = [
- setuptools
- ];
+ build-system = [ setuptools ];
pythonRelaxDeps = [ "packaging" ];
@@ -74,7 +72,7 @@ buildPythonPackage rec {
meta = {
homepage = "https://streamlit.io/";
- changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}";
+ changelog = "https://github.com/streamlit/streamlit/releases/tag/${finalAttrs.version}";
description = "Fastest way to build custom ML tools";
mainProgram = "streamlit";
maintainers = with lib.maintainers; [
@@ -83,4 +81,4 @@ buildPythonPackage rec {
];
license = lib.licenses.asl20;
};
-}
+})