1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "thrift";
9 version = "0.11.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "7d59ac4fdcb2c58037ebd4a9da5f9a49e3e034bf75b3f26d9fe48ba3d8806e6b";
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}