My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/metakernel/default.nix

27 lines
550 B

{ lib
, buildPythonPackage
, fetchPypi
, ipykernel
}:
buildPythonPackage rec {
pname = "metakernel";
version = "0.29.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+B8ywp7q42g8H+BPFK+D1VyLfyqgnrYIN3ai/mdcwcA=";
};
propagatedBuildInputs = [ ipykernel ];
# Tests hang, so disable
doCheck = false;
meta = with lib; {
description = "Jupyter/IPython Kernel Tools";
homepage = "https://github.com/Calysto/metakernel";
license = licenses.bsd3;
maintainers = with maintainers; [ thomasjm ];
};
}