Merge pull request #294793 from AnotherGroupChat/marimo
marimo: init at 0.3.3
This commit is contained in:
commit
804efaf728
4 changed files with 80 additions and 0 deletions
|
@ -761,6 +761,11 @@
|
||||||
githubId = 786394;
|
githubId = 786394;
|
||||||
name = "Alexander Krupenkin ";
|
name = "Alexander Krupenkin ";
|
||||||
};
|
};
|
||||||
|
akshayka = {
|
||||||
|
github = "akshayka";
|
||||||
|
githubId = 1994308;
|
||||||
|
name = "Akshay Agrawal";
|
||||||
|
};
|
||||||
akshgpt7 = {
|
akshgpt7 = {
|
||||||
email = "akshgpt7@gmail.com";
|
email = "akshgpt7@gmail.com";
|
||||||
github = "akshgpt7";
|
github = "akshgpt7";
|
||||||
|
@ -5005,6 +5010,12 @@
|
||||||
githubId = 283316;
|
githubId = 283316;
|
||||||
name = "Dane Lipscombe";
|
name = "Dane Lipscombe";
|
||||||
};
|
};
|
||||||
|
dmadisetti = {
|
||||||
|
email = "nix@madisetti.me";
|
||||||
|
github = "dmadisetti";
|
||||||
|
githubId = 2689338;
|
||||||
|
name = "Dylan Madisetti";
|
||||||
|
};
|
||||||
dmalikov = {
|
dmalikov = {
|
||||||
email = "malikov.d.y@gmail.com";
|
email = "malikov.d.y@gmail.com";
|
||||||
github = "dmalikov";
|
github = "dmalikov";
|
||||||
|
|
65
pkgs/development/python-modules/marimo/default.nix
Normal file
65
pkgs/development/python-modules/marimo/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10686,6 +10686,8 @@ with pkgs;
|
||||||
inherit (python3Packages) mako;
|
inherit (python3Packages) mako;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
marimo = with python3Packages; toPythonApplication marimo;
|
||||||
|
|
||||||
marktext = callPackage ../applications/misc/marktext { };
|
marktext = callPackage ../applications/misc/marktext { };
|
||||||
|
|
||||||
mars-mips = callPackage ../development/tools/mars-mips { };
|
mars-mips = callPackage ../development/tools/mars-mips { };
|
||||||
|
|
|
@ -7001,6 +7001,8 @@ self: super: with self; {
|
||||||
|
|
||||||
mariadb = callPackage ../development/python-modules/mariadb { };
|
mariadb = callPackage ../development/python-modules/mariadb { };
|
||||||
|
|
||||||
|
marimo = callPackage ../development/python-modules/marimo { };
|
||||||
|
|
||||||
marisa = callPackage ../development/python-modules/marisa {
|
marisa = callPackage ../development/python-modules/marisa {
|
||||||
inherit (pkgs) marisa;
|
inherit (pkgs) marisa;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue