about summary refs log tree commit diff
path: root/pkgs/development/python-modules/thrift/default.nix
blob: 932c642e9b182232d33b36fb0d67a567296496ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "thrift";
  version = "0.9.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "dfbc3d3bd19d396718dab05abaf46d93ae8005e2df798ef02e32793cd963877e";
  };

  # No tests. Breaks when not disabling.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Python bindings for the Apache Thrift RPC system";
    homepage = http://thrift.apache.org/;
    license = licenses.asl20;
    maintainers = with maintainers; [ hbunke ];
  };

}