75 lines
1.3 KiB
Nix
75 lines
1.3 KiB
Nix
{ async-generator
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, ipykernel
|
|
, ipywidgets
|
|
, jupyter-client
|
|
, lib
|
|
, nbconvert
|
|
, nbformat
|
|
, nest-asyncio
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, testpath
|
|
, traitlets
|
|
, xmltodict
|
|
}:
|
|
|
|
let nbclient = buildPythonPackage rec {
|
|
pname = "nbclient";
|
|
version = "0.10.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8OLkpwX4Gpam9VSFUtNS41Ypxe4+2yN3ng6iVY9DSqY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
async-generator
|
|
traitlets
|
|
nbformat
|
|
nest-asyncio
|
|
jupyter-client
|
|
];
|
|
|
|
# circular dependencies if enabled by default
|
|
doCheck = false;
|
|
|
|
nativeCheckInputs = [
|
|
ipykernel
|
|
ipywidgets
|
|
nbconvert
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
testpath
|
|
xmltodict
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
passthru.tests = {
|
|
check = nbclient.overridePythonAttrs (_: { doCheck = true; });
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jupyter/nbclient";
|
|
description = "A client library for executing notebooks";
|
|
mainProgram = "jupyter-execute";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
};
|
|
in nbclient
|