Merge pull request #147993 from FabianGD/bugfix/ipympl

This commit is contained in:
Sandro 2021-11-30 18:04:02 +01:00 committed by GitHub
commit 22442ee654
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,22 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, ipykernel
, ipywidgets , ipywidgets
, matplotlib
, jupyter-packaging
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ipympl"; pname = "ipympl";
version = "0.8.0"; version = "0.8.2";
format = "wheel";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version format;
sha256 = "ef5d21820ed88a8bd6efddb884c333d0eaea7f2f7d4b3054e6d386b07a36dd9d"; sha256 = "0509gzm5557lyxx8k3qqgp14ifnmfx796cfc8f592mv97pxkyibl";
}; };
propagatedBuildInputs = [ ipywidgets matplotlib jupyter-packaging ];
propagatedBuildInputs = [ ipykernel ipywidgets ];
# There are no unit tests in repository # There are no unit tests in repository
doCheck = false; doCheck = false;
@ -24,7 +25,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Matplotlib Jupyter Extension"; description = "Matplotlib Jupyter Extension";
homepage = "https://github.com/matplotlib/jupyter-matplotlib"; homepage = "https://github.com/matplotlib/jupyter-matplotlib";
maintainers = with maintainers; [ jluttine ]; maintainers = with maintainers; [ jluttine fabiangd ];
license = licenses.bsd3; license = licenses.bsd3;
}; };
} }