From 07e721e18b0b7d72e307b7e9af3d7a6b3be04d57 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 24 Jan 2016 10:37:08 +0100 Subject: [PATCH] pythonPackages.thrift: 0.9.2 -> 0.9.3 --- pkgs/top-level/python-packages.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 639f9b4246e..9ff75e968e5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23800,13 +23800,16 @@ in modules // { thrift = buildPythonPackage rec { name = "thrift-${version}"; - version = "0.9.2"; + version = "0.9.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/t/thrift/${name}.tar.gz"; - sha256 = "1yla6wg18x2a0l0lrvkp1v464hqhff98ck8pnv8d5j9kn3j6bxh8"; + sha256 = "dfbc3d3bd19d396718dab05abaf46d93ae8005e2df798ef02e32793cd963877e"; }; + # No tests. Breaks when not disabling. + doCheck = false; + meta = { description = "Python bindings for the Apache Thrift RPC system"; homepage = http://thrift.apache.org/;