python313Packages.extra-streamlit-components: init at 0.1.81
Additional components for streamlit https://pypi.org/project/extra-streamlit-components/
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
streamlit,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "extra-streamlit-components";
|
||||
version = "0.1.81";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "extra_streamlit_components";
|
||||
inherit version;
|
||||
hash = "sha256-65vre6z+iz0jjxiIohx4rGz6VpNBvkhLygjD6gsV8g0=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ streamlit ];
|
||||
|
||||
pythonImportsCheck = [ "extra_streamlit_components" ];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Additional components for streamlit";
|
||||
homepage = "https://pypi.org/project/extra-streamlit-components/";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
@@ -5105,6 +5105,10 @@ self: super: with self; {
|
||||
|
||||
extension-helpers = callPackage ../development/python-modules/extension-helpers { };
|
||||
|
||||
extra-streamlit-components =
|
||||
callPackage ../development/python-modules/extra-streamlit-components
|
||||
{ };
|
||||
|
||||
extract-msg = callPackage ../development/python-modules/extract-msg { };
|
||||
|
||||
extractcode = callPackage ../development/python-modules/extractcode { };
|
||||
|
||||
Reference in New Issue
Block a user