python38Packages.thrift: 0.13.0 -> 0.15.0

This commit is contained in:
R. RyanTM 2021-09-26 05:42:55 +00:00 committed by Sandro Jäckel
parent 0435e9318d
commit c3c2cf65cf
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -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 ];
};
}