nixpkgs/pkgs/development/python-modules/ipympl/default.nix

31 lines
708 B
Nix
Raw Normal View History

2021-05-08 23:21:52 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, ipywidgets
, matplotlib
, jupyter-packaging
}:
2019-11-27 16:35:16 +00:00
buildPythonPackage rec {
pname = "ipympl";
2021-03-24 09:28:14 +00:00
version = "0.7.0";
2019-11-27 16:35:16 +00:00
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:14 +00:00
sha256 = "f0f1f356d8cb9d4fb51bb86dbbf837c190145316cb72f66081872ebc4d6db0a1";
2019-11-27 16:35:16 +00:00
};
2021-05-08 23:21:52 +00:00
propagatedBuildInputs = [ ipywidgets matplotlib jupyter-packaging ];
2019-11-27 16:35:16 +00:00
# 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";
2019-11-27 16:35:16 +00:00
maintainers = with maintainers; [ jluttine ];
license = licenses.bsd3;
};
}