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

45 lines
867 B
Nix

{
lib,
buildPythonPackage,
fastcore,
fetchPypi,
ipython,
pythonOlder,
setuptools,
traitlets,
}:
buildPythonPackage rec {
pname = "execnb";
version = "0.1.11";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-67N2iK21Q0MAwlhnxpRLfKDFsAPLf1/az4nrff5M+Og=";
};
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";
};
}