depot/third_party/nixpkgs/pkgs/development/python-modules/nbclient/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

74 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.9.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "jupyter";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-m0Tke/JlTeKE3PJZ1rBejra/HPEXCSS0ur/cPiSBJZw=";
};
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