nixpkgs/pkgs/applications/editors/jupyter-kernels/octave/kernel.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
740 B
Nix
Raw Normal View History

2021-06-20 20:56:50 +00:00
{ lib, octave, python3Packages }:
with python3Packages;
buildPythonPackage rec {
pname = "octave-kernel";
2022-03-14 14:45:16 +00:00
version = "0.34.2";
2021-06-20 20:56:50 +00:00
src = fetchPypi {
pname = "octave_kernel";
inherit version;
2022-03-14 14:45:16 +00:00
sha256 = "sha256-5ki2lekfK7frPsmPBIzYQOfANCUY9x+F2ZRAQSdPTxo=";
2021-06-20 20:56:50 +00:00
};
propagatedBuildInputs = [ metakernel ipykernel ];
2022-03-14 14:45:16 +00:00
# Tests fail because the kernel appears to be halting or failing to launch
# There appears to be a similar problem with metakernel's tests
2021-06-20 20:56:50 +00:00
doCheck = false;
meta = with lib; {
description = "A Jupyter kernel for Octave.";
homepage = "https://github.com/Calysto/octave_kernel";
license = licenses.bsd3;
maintainers = with maintainers; [ thomasjm ];
platforms = platforms.all;
};
}