2025-05-03 17:54:17 +00:00

46 lines
867 B
Nix

{
lib,
buildPythonPackage,
fastcore,
fetchPypi,
ipython,
pythonOlder,
setuptools,
traitlets,
}:
buildPythonPackage rec {
pname = "execnb";
version = "0.1.14";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-uofpVYCb0zMYqhMxT/TfkLQku0VWdBwtzJDHoovIfd0=";
};
build-system = [ setuptools ];
dependencies = [
fastcore
ipython
traitlets
];
# no real tests
doCheck = false;
pythonImportsCheck = [ "execnb" ];
meta = with lib; {
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 = licenses.asl20;
maintainers = with maintainers; [ rxiao ];
mainProgram = "exec_nb";
};
}