mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
Merge pull request #147993 from FabianGD/bugfix/ipympl
This commit is contained in:
commit
22442ee654
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user