python313Packages.streamlit-avatar: init at 0.1.3
Component to display avatar icon in Streamlit https://pypi.org/project/streamlit-avatar/
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
streamlit,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "streamlit-avatar";
|
||||
version = "0.1.3";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "streamlit_avatar";
|
||||
inherit version;
|
||||
hash = "sha256-AjiTvYDbWpI9OX/GTSfHqXIQfaTwvqD+uZoy+TY/JpE=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ streamlit ];
|
||||
|
||||
pythonImportsCheck = [ "streamlit_avatar" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Component to display avatar icon in Streamlit";
|
||||
homepage = "https://pypi.org/project/streamlit-avatar/";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -18176,6 +18176,8 @@ self: super: with self; {
|
||||
|
||||
streamlit = callPackage ../development/python-modules/streamlit { };
|
||||
|
||||
streamlit-avatar = callPackage ../development/python-modules/streamlit-avatar { };
|
||||
|
||||
streamlit-folium = callPackage ../development/python-modules/streamlit-folium { };
|
||||
|
||||
streamz = callPackage ../development/python-modules/streamz { };
|
||||
|
||||
Reference in New Issue
Block a user