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
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, ipykernel
|
, ipykernel
|
||||||
|
, ipython_genutils
|
||||||
, ipywidgets
|
, ipywidgets
|
||||||
, matplotlib
|
, matplotlib
|
||||||
|
, numpy
|
||||||
|
, pillow
|
||||||
|
, traitlets
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -11,13 +16,22 @@ buildPythonPackage rec {
|
||||||
version = "0.9.3";
|
version = "0.9.3";
|
||||||
format = "wheel";
|
format = "wheel";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version format;
|
inherit pname version format;
|
||||||
hash = "sha256-0RPNVYkbr+myfvmbbdERqHvra7KuVQxAQpInIQO+gBM=";
|
hash = "sha256-0RPNVYkbr+myfvmbbdERqHvra7KuVQxAQpInIQO+gBM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
propagatedBuildInputs = [ ipykernel ipywidgets matplotlib ];
|
ipykernel
|
||||||
|
ipython_genutils
|
||||||
|
ipywidgets
|
||||||
|
matplotlib
|
||||||
|
numpy
|
||||||
|
pillow
|
||||||
|
traitlets
|
||||||
|
];
|
||||||
|
|
||||||
# There are no unit tests in repository
|
# There are no unit tests in repository
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
Loading…
Reference in a new issue