python3Packages.matplotlib-inline: 0.1.3 -> 0.1.6

main
Martin Weinelt 2 years ago
parent dbe80f4b2c
commit a486245526
  1. 11
      pkgs/development/python-modules/matplotlib-inline/default.nix

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

Loading…
Cancel
Save