Merge pull request #294793 from AnotherGroupChat/marimo

marimo: init at 0.3.3
This commit is contained in:
a-n-n-a-l-e-e 2024-03-20 08:46:38 -07:00 committed by GitHub
commit 804efaf728
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 80 additions and 0 deletions

View file

@ -761,6 +761,11 @@
githubId = 786394;
name = "Alexander Krupenkin ";
};
akshayka = {
github = "akshayka";
githubId = 1994308;
name = "Akshay Agrawal";
};
akshgpt7 = {
email = "akshgpt7@gmail.com";
github = "akshgpt7";
@ -5005,6 +5010,12 @@
githubId = 283316;
name = "Dane Lipscombe";
};
dmadisetti = {
email = "nix@madisetti.me";
github = "dmadisetti";
githubId = 2689338;
name = "Dylan Madisetti";
};
dmalikov = {
email = "malikov.d.y@gmail.com";
github = "dmalikov";

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

@ -10686,6 +10686,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

@ -7001,6 +7001,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;
};