Merge pull request #164189 from hqurve/octave-jupyter-update

This commit is contained in:
Sandro 2022-04-21 01:55:54 +02:00 committed by GitHub
commit c085bfc9af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,20 +4,18 @@ with python3Packages;
buildPythonPackage rec {
pname = "octave-kernel";
version = "0.32.0";
version = "0.34.2";
src = fetchPypi {
pname = "octave_kernel";
inherit version;
sha256 = "0dfbxfcf3bz4jswnpkibnjwlkgy0y4j563nrhaqxv3nfa65bksif";
sha256 = "sha256-5ki2lekfK7frPsmPBIzYQOfANCUY9x+F2ZRAQSdPTxo=";
};
propagatedBuildInputs = [ metakernel ipykernel ];
# Tests require jupyter_kernel_test to run, but it hasn't seen a
# release since 2017 and seems slightly abandoned.
# Doing fetchPypi on it doesn't work, even though it exists here:
# https://pypi.org/project/jupyter_kernel_test/.
# Tests fail because the kernel appears to be halting or failing to launch
# There appears to be a similar problem with metakernel's tests
doCheck = false;
meta = with lib; {