Merge pull request #249356 from bcdarwin/unbreak-ipympl
python310Packages.ipympl: unbreak by adding missing dependency
This commit is contained in:
commit
9ea0603f8e
1 changed files with 16 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue