Unverified Commit fc48d4b6 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #242594 from natsukium/streamlit/update

streamlit: 1.24.0 -> 1.24.1; move to python-modules
parents 9843365f 7d573d6a
Loading
Loading
Loading
Loading
+20 −13
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −2
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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 { };