mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 07:47:41 +00:00
Merge pull request #242594 from natsukium/streamlit/update
streamlit: 1.24.0 -> 1.24.1; move to python-modules
This commit is contained in:
commit
fc48d4b6e8
@ -1,38 +1,43 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, altair
|
||||
, blinker
|
||||
, buildPythonApplication
|
||||
, buildPythonPackage
|
||||
, cachetools
|
||||
, click
|
||||
, fetchPypi
|
||||
, gitpython
|
||||
, importlib-metadata
|
||||
, jinja2
|
||||
, numpy
|
||||
, packaging
|
||||
, pandas
|
||||
, pillow
|
||||
, protobuf3
|
||||
, pyarrow
|
||||
, pydeck
|
||||
, pympler
|
||||
, python-dateutil
|
||||
, pythonOlder
|
||||
, requests
|
||||
, rich
|
||||
, semver
|
||||
, setuptools
|
||||
, tenacity
|
||||
, toml
|
||||
, tornado
|
||||
, typing-extensions
|
||||
, tzlocal
|
||||
, validators
|
||||
, watchdog
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "streamlit";
|
||||
version = "1.24.0";
|
||||
version = "1.24.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version format;
|
||||
hash = "sha256-NSX6zpTHh5JzPFbWOja0iEUVDjume7UKGa20xZdagiU=";
|
||||
hash = "sha256-/V8LZHmOlwY2RAj7WJt3WVMUpjFdE7LXULljx66X82I=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
@ -42,21 +47,23 @@ buildPythonApplication rec {
|
||||
click
|
||||
gitpython
|
||||
importlib-metadata
|
||||
jinja2
|
||||
numpy
|
||||
packaging
|
||||
pandas
|
||||
pillow
|
||||
protobuf3
|
||||
pyarrow
|
||||
pydeck
|
||||
pympler
|
||||
python-dateutil
|
||||
requests
|
||||
rich
|
||||
semver
|
||||
setuptools
|
||||
tenacity
|
||||
toml
|
||||
tornado
|
||||
typing-extensions
|
||||
tzlocal
|
||||
validators
|
||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||
watchdog
|
||||
];
|
||||
|
||||
@ -75,7 +82,7 @@ buildPythonApplication rec {
|
||||
homepage = "https://streamlit.io/";
|
||||
changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}";
|
||||
description = "The fastest way to build custom ML tools";
|
||||
maintainers = with maintainers; [ yrashk ];
|
||||
maintainers = with maintainers; [ natsukium yrashk ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
@ -38016,8 +38016,6 @@ with pkgs;
|
||||
|
||||
stone-kingdoms = callPackage ../games/stone-kingdoms { };
|
||||
|
||||
streamlit = python3Packages.callPackage ../applications/science/machine-learning/streamlit { };
|
||||
|
||||
stt = callPackage ../tools/audio/stt { };
|
||||
|
||||
stuntrally = callPackage ../games/stuntrally
|
||||
@ -38752,6 +38750,8 @@ with pkgs;
|
||||
|
||||
sc2-headless = callPackage ../applications/science/machine-learning/sc2-headless { };
|
||||
|
||||
streamlit = with python3Packages; toPythonApplication streamlit;
|
||||
|
||||
uarmsolver = callPackage ../applications/science/machine-learning/uarmsolver { };
|
||||
|
||||
### SCIENCE/MATH
|
||||
|
@ -12170,6 +12170,8 @@ self: super: with self; {
|
||||
|
||||
streamlabswater = callPackage ../development/python-modules/streamlabswater { };
|
||||
|
||||
streamlit = callPackage ../development/python-modules/streamlit { };
|
||||
|
||||
streamz = callPackage ../development/python-modules/streamz { };
|
||||
|
||||
strenum = callPackage ../development/python-modules/strenum { };
|
||||
|
Loading…
Reference in New Issue
Block a user