about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/ipympl/default.nix
blob: 2d25eb645bad9863f9e133c7875aed471991f6a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib
, buildPythonPackage
, fetchPypi
, ipywidgets
, matplotlib
, jupyter-packaging
}:

buildPythonPackage rec {
  pname = "ipympl";
  version = "0.7.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "f0f1f356d8cb9d4fb51bb86dbbf837c190145316cb72f66081872ebc4d6db0a1";
  };

  propagatedBuildInputs = [ ipywidgets matplotlib jupyter-packaging ];

  # There are no unit tests in repository
  doCheck = false;
  pythonImportsCheck = [ "ipympl" "ipympl.backend_nbagg" ];

  meta = with lib; {
    description = "Matplotlib Jupyter Extension";
    homepage = "https://github.com/matplotlib/jupyter-matplotlib";
    maintainers = with maintainers; [ jluttine ];
    license = licenses.bsd3;
  };
}