ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / thrift / default.nix
blobdcb6f434411a1ebd60332232c9a4b72a183dfd9f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "thrift";
9   version = "0.16.0";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-K1tkiPze0h+dMSqiPJ/2oBldD2ribdvVrZ4+Jd/BRAg=";
14   };
16   propagatedBuildInputs = [ six ];
18   # No tests. Breaks when not disabling.
19   doCheck = false;
21   pythonImportsCheck = [ "thrift" ];
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   };