mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
74 lines
1.4 KiB
Nix
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.6.3";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jupyter";
|
|
repo = "jupyter_events";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-k+OyCKUN9hC6J1Ff2DDb2ECLvmWkkK1HtNxfKVXyl8g=";
|
|
};
|
|
|
|
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; [ ];
|
|
};
|
|
}
|