biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / editors / jupyter-kernels / octave / kernel.nix
blobf1a83bc274c27baa2abc077d2f7d397dd71ec8d6
1 { lib, python3Packages, fetchPypi }:
3 with python3Packages;
5 buildPythonPackage rec {
6   pname = "octave-kernel";
7   version = "0.34.2";
9   src = fetchPypi {
10     pname = "octave_kernel";
11     inherit version;
12     sha256 = "sha256-5ki2lekfK7frPsmPBIzYQOfANCUY9x+F2ZRAQSdPTxo=";
13   };
15   propagatedBuildInputs = [ metakernel ipykernel ];
17   # Tests fail because the kernel appears to be halting or failing to launch
18   # There appears to be a similar problem with metakernel's tests
19   doCheck = false;
21   meta = {
22     description = "Jupyter kernel for Octave";
23     homepage = "https://github.com/Calysto/octave_kernel";
24     license = lib.licenses.bsd3;
25     maintainers = with lib.maintainers; [ thomasjm ];
26     platforms = lib.platforms.all;
27   };