nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ lib
2, buildPythonPackage
3, fetchPypi
4, ipykernel
5}:
6
7buildPythonPackage rec {
8 pname = "metakernel";
9 version = "0.29.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "sha256-+B8ywp7q42g8H+BPFK+D1VyLfyqgnrYIN3ai/mdcwcA=";
14 };
15
16 propagatedBuildInputs = [ ipykernel ];
17
18 # Tests hang, so disable
19 doCheck = false;
20
21 meta = with lib; {
22 description = "Jupyter/IPython Kernel Tools";
23 homepage = "https://github.com/Calysto/metakernel";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ thomasjm ];
26 };
27}