depot/third_party/nixpkgs/pkgs/development/python-modules/marimo/default.nix

76 lines
1.3 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
setuptools,
click,
docutils,
itsdangerous,
jedi,
markdown,
packaging,
psutil,
pygments,
pymdown-extensions,
ruff,
starlette,
tomlkit,
uvicorn,
websockets,
pyyaml,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "marimo";
version = "0.9.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-7sG6i1WusNuCpuaojFXhSfPWCA2/nzHXvMF29ApGTDg=";
};
build-system = [ setuptools ];
# ruff is not packaged as a python module in nixpkgs
pythonRemoveDeps = [ "ruff" ];
dependencies = [
click
docutils
itsdangerous
jedi
markdown
packaging
psutil
pygments
pymdown-extensions
ruff
starlette
tomlkit
uvicorn
websockets
pyyaml
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "marimo" ];
meta = with lib; {
description = "Reactive Python notebook that's reproducible, git-friendly, and deployable as scripts or apps";
homepage = "https://github.com/marimo-team/marimo";
changelog = "https://github.com/marimo-team/marimo/releases/tag/${version}";
license = licenses.asl20;
mainProgram = "marimo";
maintainers = with maintainers; [
akshayka
dmadisetti
];
};
}