Files
nixpkgs/pkgs/development/python-modules/execnb/default.nix
Fabian Affolter 5929c9cd9e python3Packages.execnb: 0.1.18 -> 0.3.2
https://github.com/fastai/execnb/releases/tag/0.3.2

This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:22 +02:00

43 lines
816 B
Nix

{
lib,
buildPythonPackage,
fastcore,
fetchPypi,
ipython,
setuptools,
traitlets,
}:
buildPythonPackage rec {
pname = "execnb";
version = "0.3.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-cj0By2OIwRKtDroUJGN8EFrS++2Vx4m6/3IWB4+uQdo=";
};
build-system = [ setuptools ];
dependencies = [
fastcore
ipython
traitlets
];
# no real tests
doCheck = false;
pythonImportsCheck = [ "execnb" ];
meta = {
description = "Execute a jupyter notebook, fast, without needing jupyter";
homepage = "https://github.com/fastai/execnb";
changelog = "https://github.com/fastai/execnb/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rxiao ];
mainProgram = "exec_nb";
};
}