From c3c2cf65cfd023c094ddbc2450486bd8d3c36aa6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 26 Sep 2021 05:42:55 +0000 Subject: [PATCH] python38Packages.thrift: 0.13.0 -> 0.15.0 --- pkgs/development/python-modules/thrift/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/thrift/default.nix b/pkgs/development/python-modules/thrift/default.nix index 7b16d6668705..5e80ac14e5ac 100644 --- a/pkgs/development/python-modules/thrift/default.nix +++ b/pkgs/development/python-modules/thrift/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "thrift"; - version = "0.13.0"; + version = "0.15.0"; src = fetchPypi { inherit pname version; - sha256 = "9af1c86bf73433afc6010ed376a6c6aca2b54099cc0d61895f640870a9ae7d89"; + sha256 = "87c8205a71cf8bbb111cb99b1f7495070fbc9cabb671669568854210da5b3e29"; }; propagatedBuildInputs = [ six ]; @@ -18,11 +18,12 @@ buildPythonPackage rec { # No tests. Breaks when not disabling. doCheck = false; + pythonImportsCheck = [ "thrift" ]; + meta = with lib; { description = "Python bindings for the Apache Thrift RPC system"; - homepage = "http://thrift.apache.org/"; + homepage = "https://thrift.apache.org/"; license = licenses.asl20; maintainers = with maintainers; [ hbunke ]; }; - }