mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-21 08:01:31 +00:00
init: metakernel at 0.27.5
This commit is contained in:
30
pkgs/development/python-modules/metakernel/default.nix
Normal file
30
pkgs/development/python-modules/metakernel/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user