python3Packages.st-pages: init at 1.0.1

This commit is contained in:
adjoly
2025-08-09 17:33:38 +02:00
parent 000f977c97
commit 1cbb00d986
2 changed files with 42 additions and 0 deletions
@@ -0,0 +1,40 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
streamlit,
poetry-core,
}:
buildPythonPackage rec {
pname = "st-pages";
version = "1.0.1";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "blackary";
repo = "st_pages";
tag = "v${version}";
hash = "sha256-sJXgpRiducJVYuyvVvTZthHnIJyIRn+f9Uw/wAMfnm0=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
streamlit
];
meta = {
description = "An experimental version of Streamlit Multi-Page Apps";
homepage = "https://github.com/blackary/st_pages";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
keyzox
];
};
}
+2
View File
@@ -17235,6 +17235,8 @@ self: super: with self; {
ssort = callPackage ../development/python-modules/ssort { };
st-pages = callPackage ../development/python-modules/st-pages { };
stable-baselines3 = callPackage ../development/python-modules/stable-baselines3 { };
stack-data = callPackage ../development/python-modules/stack-data { };