1 { lib, buildPythonPackage, fetchPypi
8 buildPythonPackage rec {
9 pname = "matplotlib-inline";
13 inherit pname version;
14 hash = "sha256-+Ifl8Qupjo0rFQ3c9HAsHl+LOiAAXrD3S/29Ng7m8wQ=";
17 propagatedBuildInputs = [
21 # wants to import ipython, which creates a circular dependency
25 pythonImportsCheck = [
26 # tries to import matplotlib, which can't work with doCheck disabled
30 passthru.tests = { inherit ipython; };
33 description = "Matplotlib Inline Back-end for IPython and Jupyter";
34 homepage = "https://github.com/ipython/matplotlib-inline";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ jonringer ];