9 buildPythonPackage rec {
10 pname = "jupyter-contrib-core";
13 src = fetchFromGitHub {
14 owner = "jupyter-contrib";
15 repo = "jupyter_contrib_core";
16 rev = "refs/tags/${version}";
17 hash = "sha256-UTtK+aKxBFkqKuHrt1ox8vdHyFz/9HiKFl7U4UQcG88=";
20 propagatedBuildInputs = [
25 nativeCheckInputs = [ pytestCheckHook ];
28 # This test fails upstream too
29 "tests/test_application.py"
32 pythonImportsCheck = [ "jupyter_contrib_core" ];
35 description = "Common utilities for jupyter-contrib projects";
36 homepage = "https://github.com/jupyter-contrib/jupyter_contrib_core";
37 license = licenses.bsd3;
38 maintainers = with maintainers; [ GaetanLepage ];