linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / ipympl / default.nix
blob4efe8b176c5240e22e411742f764e07e8b16af63
1 { lib, buildPythonPackage, fetchPypi, ipywidgets, matplotlib }:
3 buildPythonPackage rec {
4   pname = "ipympl";
5   version = "0.5.8";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0e2f2e540a2dfea61524b7993fc8552c9236b1aaa3826e1f382c75cb2fa5c382";
10   };
12   propagatedBuildInputs = [ ipywidgets matplotlib ];
14   # There are no unit tests in repository
15   doCheck = false;
16   pythonImportsCheck = [ "ipympl" "ipympl.backend_nbagg" ];
18   meta = with lib; {
19     description = "Matplotlib Jupyter Extension";
20     homepage = "https://github.com/matplotlib/jupyter-matplotlib";
21     maintainers = with maintainers; [ jluttine ];
22     license = licenses.bsd3;
23   };