1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage 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 ];
17
18 # No tests. Breaks when not disabling.
19 doCheck = false;
20
21 meta = with stdenv.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}