mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
50 lines
886 B
Nix
50 lines
886 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, hatchling
|
|
, ipykernel
|
|
, jedi
|
|
, jupyter-core
|
|
, pexpect
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "metakernel";
|
|
version = "0.29.5";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-tGp8CHQ1Ekn/2KiGZGd/8V6NdWMseDSETZ/Z3T3P91U=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
ipykernel
|
|
jedi
|
|
jupyter-core
|
|
pexpect
|
|
];
|
|
|
|
# Tests hang, so disable
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"metakernel"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Jupyter/IPython Kernel Tools";
|
|
homepage = "https://github.com/Calysto/metakernel";
|
|
changelog = "https://github.com/Calysto/metakernel/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ thomasjm ];
|
|
};
|
|
}
|