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:
Fabian Affolter
2025-12-17 02:43:23 +01:00
parent af84f9d270
commit 83fa20c8f4
2 changed files with 39 additions and 0 deletions
@@ -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 ];
};
}
+4
View File
@@ -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 { };