mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
29 lines
745 B
Nix
29 lines
745 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "octave-kernel";
|
|
version = "0.34.2";
|
|
|
|
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 = "A Jupyter kernel for Octave.";
|
|
homepage = "https://github.com/Calysto/octave_kernel";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ thomasjm ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|