depot/third_party/nixpkgs/pkgs/development/python-modules/matplotlib-inline/default.nix
Default email ce641f4048 Project import generated by Copybara.
GitOrigin-RevId: bc5d68306b40b8522ffb69ba6cff91898c2fbbff
2021-12-06 17:07:01 +01:00

35 lines
809 B
Nix

{ lib, buildPythonPackage, fetchPypi
, matplotlib
, traitlets
# tests
, ipython
}:
buildPythonPackage rec {
pname = "matplotlib-inline";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee";
};
propagatedBuildInputs = [
matplotlib # not documented, but required
traitlets
];
# wants to import ipython, which creates a circular dependency
doCheck = false;
pythonImportsCheck = [ "matplotlib_inline" ];
passthru.tests = { inherit ipython; };
meta = with lib; {
description = "Matplotlib Inline Back-end for IPython and Jupyter";
homepage = "https://github.com/ipython/matplotlib-inline";
license = licenses.bsd3;
maintainers = with maintainers; [ jonringer ];
};
}