Files
nixpkgs/pkgs/development/python-modules/jupyter-events/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

74 lines
1.4 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
# build
, hatchling
# runtime
, jsonschema
, python-json-logger
, pyyaml
, traitlets
# optionals
, click
, rich
# tests
, pytest-asyncio
, pytest-console-scripts
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jupyter-events";
version = "0.5.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "jupyter";
repo = "jupyter_events";
rev = "refs/tags/v${version}";
hash = "sha256-ak5JNMitxMvXaHPmjMhB58y8Fy8N1oLtqNMNZ9lgpnM=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
jsonschema
python-json-logger
pyyaml
traitlets
]
++ jsonschema.optional-dependencies.format
++ jsonschema.optional-dependencies.format-nongpl;
passthru.optional-dependencies = {
cli = [
click
rich
];
};
nativeCheckInputs = [
pytest-asyncio
pytest-console-scripts
pytestCheckHook
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
preCheck = ''
export PATH="$out/bin:$PATH"
'';
meta = with lib; {
changelog = "https://github.com/jupyter/jupyter_events/releases/tag/v${version}";
description = "Configurable event system for Jupyter applications and extensions";
homepage = "https://github.com/jupyter/jupyter_events";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}