Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
37 lines
784 B
Nix
37 lines
784 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchPypi,
|
|
}:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "octave-kernel";
|
|
version = "0.34.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "octave_kernel";
|
|
inherit version;
|
|
sha256 = "sha256-5ki2lekfK7frPsmPBIzYQOfANCUY9x+F2ZRAQSdPTxo=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
metakernel
|
|
ipykernel
|
|
];
|
|
|
|
# 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 = {
|
|
description = "Jupyter kernel for Octave";
|
|
homepage = "https://github.com/Calysto/octave_kernel";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ thomasjm ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|