mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
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.7.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2H6Oi1tK/GrtfMTR1j12tZdRzQkFUxXzMSpfCtGPyWE=";
|
|
};
|
|
|
|
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";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
};
|
|
in nbclient
|