python3Packages.st-pages: init at 1.0.1 (#432281)

This commit is contained in:
Yohann Boniface
2025-08-24 04:00:41 +02:00
committed by GitHub
3 changed files with 49 additions and 0 deletions
+7
View File
@@ -13297,6 +13297,13 @@
githubId = 9433472;
name = "ash";
};
keyzox = {
email = "nixpkgs@adjoly.fr";
github = "keyzox71";
matrix = "@keyzox:matrix.org";
githubId = 18579667;
name = "Adam J.";
};
kfollesdal = {
email = "kfollesdal@gmail.com";
github = "kfollesdal";
@@ -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
@@ -17374,6 +17374,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 { };