python312Packages.marimo: 0.10.9 -> 0.10.14

Changelog: https://github.com/marimo-team/marimo/releases/tag/0.10.14
This commit is contained in:
natsukium
2025-01-18 23:01:55 +09:00
parent 8cb5fba3d3
commit 160d2cb80a
@@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
# build-system
hatchling,
@@ -15,14 +16,16 @@
narwhals,
packaging,
psutil,
pycrdt,
pygments,
pymdown-extensions,
pyyaml,
ruff,
starlette,
tomlkit,
typing-extensions,
uvicorn,
websockets,
pyyaml,
# tests
versionCheckHook,
@@ -30,18 +33,21 @@
buildPythonPackage rec {
pname = "marimo";
version = "0.10.9";
version = "0.10.14";
pyproject = true;
# The github archive does not include the static assets
src = fetchPypi {
inherit pname version;
hash = "sha256-WoMfybvKlD8Gy2sc3/EhQZVN9WPh8eEVPlG5ksyjjGc=";
hash = "sha256-Af8KNgKBhgm2AwCrCrSRYWutarm4Z+ftdt0mFgApcsk=";
};
build-system = [ hatchling ];
pythonRelaxDeps = [ "websockets" ];
pythonRelaxDeps = [
"pycrdt"
"websockets"
];
dependencies = [
click
@@ -52,15 +58,16 @@ buildPythonPackage rec {
narwhals
packaging
psutil
pycrdt
pygments
pymdown-extensions
pyyaml
ruff
starlette
tomlkit
uvicorn
websockets
pyyaml
];
] ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ];
pythonImportsCheck = [ "marimo" ];