init: metakernel at 0.27.5

This commit is contained in:
Tom McLaughlin 2021-06-20 13:56:29 -07:00
parent 788deaad9d
commit d026185c79
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, buildPythonPackage
, fetchPypi
, ipykernel
, isPy27
, mock
, pytest
}:
buildPythonPackage rec {
pname = "metakernel";
version = "0.27.5";
src = fetchPypi {
inherit pname version;
sha256 = "0aqq9zil6h7kxsg3v2008nr6lv47qvcsash8qzmi1xh6r4x606zy";
};
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 ];
};
}

View file

@ -4220,6 +4220,8 @@ in {
mesonpep517 = callPackage ../development/python-modules/mesonpep517 { };
metakernel = callPackage ../development/python-modules/metakernel { };
metar = callPackage ../development/python-modules/metar { };
mezzanine = callPackage ../development/python-modules/mezzanine { };