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

82 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build
, hatchling
# runtime
, jsonschema
, python-json-logger
, pyyaml
, referencing
, traitlets
# optionals
, click
, rich
# tests
, pytest-asyncio
, pytest-console-scripts
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jupyter-events";
version = "0.9.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jupyter";
repo = "jupyter_events";
rev = "refs/tags/v${version}";
hash = "sha256-LDj6dTtq3npJxLKBQEEwGQFeDPvWF2adHeJhOai2MRU=";
};
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
jsonschema
python-json-logger
pyyaml
referencing
traitlets
]
++ 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"
'';
pythonImportsCheck = [
"jupyter_events"
];
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; [ ];
};
}