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 { 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;