summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2016-10-08 23:14:07 +0200
committerLancelot SIX <lsix@lancelotsix.com>2016-10-08 23:14:07 +0200
commitf910a4e638d4b1b2b4fce34da6d8824034eb2806 (patch)
tree8979cb6aa3ef2ebad1e35498df72b1052e906871 /pkgs/development/python-modules
parentf561eb158e8ee434258d091a2ecd00e13235e4e1 (diff)
downloadnixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar.gz
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar.bz2
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar.lz
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar.xz
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.tar.zst
nixpkgs-f910a4e638d4b1b2b4fce34da6d8824034eb2806.zip
pythonPackages.matplotlib: 1.5.1 -> 1.5.3
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/matplotlib/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix
index 7c1b8b503a3..5ba813deba6 100644
--- a/pkgs/development/python-modules/matplotlib/default.nix
+++ b/pkgs/development/python-modules/matplotlib/default.nix
@@ -18,11 +18,11 @@ assert enableTk -> (tcl != null)
 
 buildPythonPackage rec {
   name = "matplotlib-${version}";
-  version = "1.5.1";
+  version = "1.5.3";
 
   src = fetchurl {
     url = "mirror://pypi/m/matplotlib/${name}.tar.gz";
-    sha256 = "3ab8d968eac602145642d0db63dd8d67c85e9a5444ce0e2ecb2a8fedc7224d40";
+    sha256 = "1g7bhr6v3wdxyx29rfxgf57l9w19s79cdlpyi0h4y0c5ywwxr9d0";
   };
 
   NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";