depot/third_party/nixpkgs/pkgs/development/python-modules/streamlit/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

100 lines
1.7 KiB
Nix

{
lib,
stdenv,
altair,
blinker,
buildPythonPackage,
cachetools,
click,
fetchPypi,
gitpython,
importlib-metadata,
numpy,
packaging,
pandas,
pillow,
protobuf,
pyarrow,
pydeck,
pympler,
python-dateutil,
pythonOlder,
pythonRelaxDepsHook,
setuptools,
requests,
rich,
tenacity,
toml,
tornado,
typing-extensions,
tzlocal,
validators,
watchdog,
}:
buildPythonPackage rec {
pname = "streamlit";
version = "1.36.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-oSr58Othq1gy9DgzYlex7CDrKdjg4Ma0CnkRa6k5vJw=";
};
nativeBuildInputs = [
setuptools
pythonRelaxDepsHook
];
pythonRelaxDeps = [ "packaging" ];
propagatedBuildInputs = [
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
] ++ lib.optionals (!stdenv.isDarwin) [ watchdog ];
# pypi package does not include the tests, but cannot be built with fetchFromGitHub
doCheck = false;
pythonImportsCheck = [ "streamlit" ];
postInstall = ''
rm $out/bin/streamlit.cmd # remove windows helper
'';
meta = with lib; {
homepage = "https://streamlit.io/";
changelog = "https://github.com/streamlit/streamlit/releases/tag/${version}";
description = "Fastest way to build custom ML tools";
mainProgram = "streamlit";
maintainers = with maintainers; [
natsukium
yrashk
];
license = licenses.asl20;
};
}