rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / applications / editors / jupyter-kernels / octave / kernel.nix
blob7223d9e69a8961020323519eeb0cf8f5e9e4e9d3
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 = "A 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   };