Merge pull request #249356 from bcdarwin/unbreak-ipympl

python310Packages.ipympl: unbreak by adding missing dependency
This commit is contained in:
OTABI Tomoya 2023-08-16 15:27:02 +09:00 committed by GitHub
commit 9ea0603f8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,14 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, ipykernel
, ipython_genutils
, ipywidgets
, matplotlib
, numpy
, pillow
, traitlets
}:
buildPythonPackage rec {
@ -11,13 +16,22 @@ buildPythonPackage rec {
version = "0.9.3";
format = "wheel";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version format;
hash = "sha256-0RPNVYkbr+myfvmbbdERqHvra7KuVQxAQpInIQO+gBM=";
};
propagatedBuildInputs = [ ipykernel ipywidgets matplotlib ];
propagatedBuildInputs = [
ipykernel
ipython_genutils
ipywidgets
matplotlib
numpy
pillow
traitlets
];
# There are no unit tests in repository
doCheck = false;