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