Unverified Commit f9b0bd52 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #205996 from r-ryantm/auto-update/python310Packages.metakernel

python310Packages.metakernel: 0.29.2 -> 0.29.4
parents 4e3e48d7 bc556c9f
Loading
Loading
Loading
Loading
+19 −3
Original line number Diff line number Diff line
@@ -3,30 +3,46 @@
, fetchPypi
, hatchling
, ipykernel
, jedi
, jupyter_core
, pexpect
, pythonOlder
}:

buildPythonPackage rec {
  pname = "metakernel";
  version = "0.29.2";
  version = "0.29.4";
  format = "pyproject";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-A++uLR4hhOQYmA6o9wBTejFju3CpbK0hwIs7XFscddQ=";
    hash = "sha256-kxrF/Msxjht7zGs0aEcL/Sf0qwcLiSoDPDUlE7Lrcmg=";
  };

  nativeBuildInputs = [
    hatchling
  ];

  propagatedBuildInputs = [ ipykernel ];
  propagatedBuildInputs = [
    ipykernel
    jedi
    jupyter_core
    pexpect
  ];

  # Tests hang, so disable
  doCheck = false;

  pythonImportsCheck = [
    "metakernel"
  ];

  meta = with lib; {
    description = "Jupyter/IPython Kernel Tools";
    homepage = "https://github.com/Calysto/metakernel";
    changelog = "https://github.com/Calysto/metakernel/blob/v${version}/CHANGELOG.md";
    license = licenses.bsd3;
    maintainers = with maintainers; [ thomasjm ];
  };