Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #139503 from r-ryantm/auto-update/python3.8-thrift

authored by

Sandro and committed by
GitHub
78284508 381498f9

+5 -4
+5 -4
pkgs/development/python-modules/thrift/default.nix
··· 6 6 7 7 buildPythonPackage rec { 8 8 pname = "thrift"; 9 - version = "0.13.0"; 9 + version = "0.15.0"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "9af1c86bf73433afc6010ed376a6c6aca2b54099cc0d61895f640870a9ae7d89"; 13 + sha256 = "87c8205a71cf8bbb111cb99b1f7495070fbc9cabb671669568854210da5b3e29"; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ six ]; ··· 18 18 # No tests. Breaks when not disabling. 19 19 doCheck = false; 20 20 21 + pythonImportsCheck = [ "thrift" ]; 22 + 21 23 meta = with lib; { 22 24 description = "Python bindings for the Apache Thrift RPC system"; 23 - homepage = "http://thrift.apache.org/"; 25 + homepage = "https://thrift.apache.org/"; 24 26 license = licenses.asl20; 25 27 maintainers = with maintainers; [ hbunke ]; 26 28 }; 27 - 28 29 }