Unverified Commit c100f58b authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

Merge pull request #269531 from NixOS/backport-269382-to-release-23.11

[Backport release-23.11] python311Packages.nbconvert: 7.8.0 -> 7.11.0 
parents 045a661d 9fbcd770
Loading
Loading
Loading
Loading
+6 −8
Original line number Diff line number Diff line
@@ -21,7 +21,6 @@
, importlib-metadata
, flaky
, ipywidgets
, pyppeteer
, pytestCheckHook
}:

@@ -33,15 +32,14 @@ let
  };
in buildPythonPackage rec {
  pname = "nbconvert";
  version = "7.8.0";
  version = "7.11.0";
  pyproject = true;

  disabled = pythonOlder "3.8";

  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-9bwVoSR+FN1Bzu8MCjvHACDgFldusFeNpi8cW0+VBHk=";
    hash = "sha256-q+3AHPVDF3/94L/Cppcm1aR49q8QozL8G/Kfy08M8AA=";
  };

  # Add $out/share/jupyter to the list of paths that are used to search for
@@ -87,7 +85,6 @@ in buildPythonPackage rec {
  nativeCheckInputs = [
    flaky
    ipywidgets
    pyppeteer
    pytestCheckHook
  ];

@@ -105,8 +102,9 @@ in buildPythonPackage rec {

  meta = {
    description = "Converting Jupyter Notebooks";
    homepage = "https://jupyter.org/";
    homepage = "https://github.com/jupyter/nbconvert";
    changelog = "https://github.com/jupyter/nbconvert/blob/v${version}/CHANGELOG.md";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ fridh ];
    maintainers = lib.teams.jupyter.members;
  };
}