marimo: init at 0.3.3

This commit is contained in:
dylan madisetti 2024-03-20 10:40:55 -04:00
parent 791d638f3f
commit 318332f5b6
No known key found for this signature in database
GPG key ID: 9080F46A6E933A9D
3 changed files with 69 additions and 0 deletions

View file

@ -0,0 +1,65 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
, click
, jedi
, markdown
, pymdown-extensions
, pygments
, tomlkit
, uvicorn
, starlette
, websockets
, docutils
, black
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "marimo";
version = "0.3.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-l5QehU/LqEWb7ybKxace4sm6C9mcNlaHNOp55ExglpQ=";
};
build-system = [
setuptools
];
dependencies = [
click
jedi
markdown
pymdown-extensions
pygments
tomlkit
uvicorn
starlette
websockets
docutils
black
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"marimo"
];
meta = with lib; {
description = "A reactive Python notebook that's reproducible, git-friendly, and deployable as scripts or apps";
homepage = "https://github.com/marimo-team/marimo";
license = licenses.asl20;
mainProgram = "marimo";
maintainers = with maintainers; [ akshayka dmadisetti ];
};
}

View file

@ -10706,6 +10706,8 @@ with pkgs;
inherit (python3Packages) mako;
};
marimo = with python3Packages; toPythonApplication marimo;
marktext = callPackage ../applications/misc/marktext { };
mars-mips = callPackage ../development/tools/mars-mips { };

View file

@ -6961,6 +6961,8 @@ self: super: with self; {
mariadb = callPackage ../development/python-modules/mariadb { };
marimo = callPackage ../development/python-modules/marimo { };
marisa = callPackage ../development/python-modules/marisa {
inherit (pkgs) marisa;
};