-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294793 from AnotherGroupChat/marimo
marimo: init at 0.3.3
- Loading branch information
Showing
4 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -761,6 +761,11 @@ | |
githubId = 786394; | ||
name = "Alexander Krupenkin "; | ||
}; | ||
akshayka = { | ||
github = "akshayka"; | ||
githubId = 1994308; | ||
name = "Akshay Agrawal"; | ||
}; | ||
akshgpt7 = { | ||
email = "[email protected]"; | ||
github = "akshgpt7"; | ||
|
@@ -5005,6 +5010,12 @@ | |
githubId = 283316; | ||
name = "Dane Lipscombe"; | ||
}; | ||
dmadisetti = { | ||
email = "[email protected]"; | ||
github = "dmadisetti"; | ||
githubId = 2689338; | ||
name = "Dylan Madisetti"; | ||
}; | ||
dmalikov = { | ||
email = "[email protected]"; | ||
github = "dmalikov"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters