marimo: init at 0.3.3
This commit is contained in:
parent
791d638f3f
commit
318332f5b6
3 changed files with 69 additions and 0 deletions
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10706,6 +10706,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 { };
|
||||||
|
|
|
@ -6961,6 +6961,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