Skip to content

Commit

Permalink
python312Packages.jupyter-telemetry: refactor (NixOS#369883)
Browse files Browse the repository at this point in the history
  • Loading branch information
natsukium authored Jan 10, 2025
2 parents 956d9f5 + 4bd75ea commit 125f1d9
Showing 1 changed file with 25 additions and 10 deletions.
35 changes: 25 additions & 10 deletions pkgs/development/python-modules/jupyter-telemetry/default.nix
Original file line number Diff line number Diff line change
@@ -1,35 +1,50 @@
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
fetchFromGitHub,
setuptools,
python-json-logger,
jsonschema,
ruamel-yaml,
traitlets,
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "jupyter_telemetry";
pname = "jupyter-telemetry";
version = "0.1.0";
disabled = pythonOlder "3.5";
pyproject = true;

src = fetchPypi {
inherit pname version;
sha256 = "052khyn6h97jxl3k5i2m81xvga5v6vwh5qixzrax4w6zwcx62p24";
src = fetchFromGitHub {
owner = "jupyter";
repo = "telemetry";
tag = "v${version}";
hash = "sha256-WxTlTs6gE9pa0hbl29Zvwikobz1/2JQ3agYO7WxyZ2E=";
};

propagatedBuildInputs = [
build-system = [ setuptools ];

dependencies = [
python-json-logger
jsonschema
ruamel-yaml
traitlets
];

meta = with lib; {
pythonImportsCheck = [ "jupyter_telemetry" ];

nativeCheckInputs = [ pytestCheckHook ];

disabledTests = [
# AssertionError
"test_record_event"
"test_unique_logger_instances"
];

meta = {
description = "Telemetry for Jupyter Applications and extensions";
homepage = "https://jupyter-telemetry.readthedocs.io/";
license = licenses.bsd3;
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ chiroptical ];
};
}

0 comments on commit 125f1d9

Please sign in to comment.