python3Packages.matplotlib-inline: 0.1.3 -> 0.1.6

This commit is contained in:
Martin Weinelt 2022-09-14 23:36:11 +02:00
parent dbe80f4b2c
commit a486245526

View File

@ -7,11 +7,11 @@
buildPythonPackage rec {
pname = "matplotlib-inline";
version = "0.1.3";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "a04bfba22e0d1395479f866853ec1ee28eea1485c1d69a6faf00dc3e24ff34ee";
sha256 = "sha256-+Ifl8Qupjo0rFQ3c9HAsHl+LOiAAXrD3S/29Ng7m8wQ=";
};
propagatedBuildInputs = [
@ -20,7 +20,12 @@ buildPythonPackage rec {
# wants to import ipython, which creates a circular dependency
doCheck = false;
pythonImportsCheck = [ "matplotlib_inline" ];
#
pythonImportsCheck = [
# tries to import matplotlib, which can't work with doCheck disabled
#"matplotlib_inline"
];
passthru.tests = { inherit ipython; };