about summary refs log tree commit diff
path: root/pkgs/development/python-modules/matplotlib
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-02-17 21:02:15 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-02-17 21:02:15 +0100
commitddec19c82301e86f94ee2c33dd066e4a1e44b254 (patch)
tree9495554867658f2ffcff4ca9be58a1c44d5d4893 /pkgs/development/python-modules/matplotlib
parent61f0527694ce4c3395e82ed06c603456ce1fac3f (diff)
downloadnixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar.gz
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar.bz2
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar.lz
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar.xz
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.tar.zst
nixlib-ddec19c82301e86f94ee2c33dd066e4a1e44b254.zip
pythonPackages.matplotlib: 1.5.0 -> 1.5.1
Diffstat (limited to 'pkgs/development/python-modules/matplotlib')
-rw-r--r--pkgs/development/python-modules/matplotlib/default.nix13
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix
index 152330beac5a..1ebba52ff6f4 100644
--- a/pkgs/development/python-modules/matplotlib/default.nix
+++ b/pkgs/development/python-modules/matplotlib/default.nix
@@ -12,11 +12,11 @@ assert enableGtk2 -> pygtk != null;
 
 buildPythonPackage rec {
   name = "matplotlib-${version}";
-  version = "1.5.0";
+  version = "1.5.1";
 
   src = fetchurl {
     url = "https://pypi.python.org/packages/source/m/matplotlib/${name}.tar.gz";
-    sha256 = "67b08b1650a00a6317d94b76a30a47320087e5244920604c5462188cba0c2646";
+    sha256 = "3ab8d968eac602145642d0db63dd8d67c85e9a5444ce0e2ecb2a8fedc7224d40";
   };
 
   NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
@@ -37,6 +37,14 @@ buildPythonPackage rec {
 
   patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin-stdenv.patch ];
 
+  checkPhase = ''
+    ${python.interpreter} tests.py
+  '';
+
+  # The entry point for running tests, tests.py, is not included in the release.
+  # https://github.com/matplotlib/matplotlib/issues/6017
+  doCheck = false;
+
   prePatch = ''
     # Failing test: ERROR: matplotlib.tests.test_style.test_use_url
     sed -i 's/test_use_url/fails/' lib/matplotlib/tests/test_style.py
@@ -52,4 +60,5 @@ buildPythonPackage rec {
     maintainers = with maintainers; [ lovek323 ];
     platforms   = platforms.unix;
   };
+
 }