about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/thrift/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/thrift/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/thrift/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/thrift/default.nix b/nixpkgs/pkgs/development/python-modules/thrift/default.nix
new file mode 100644
index 000000000000..c7279b867b10
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/thrift/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv
+, buildPythonPackage
+, fetchPypi
+, six
+}:
+
+buildPythonPackage rec {
+  pname = "thrift";
+  version = "0.13.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "9af1c86bf73433afc6010ed376a6c6aca2b54099cc0d61895f640870a9ae7d89";
+  };
+
+  propagatedBuildInputs = [ six ];
+
+  # No tests. Breaks when not disabling.
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Python bindings for the Apache Thrift RPC system";
+    homepage = "http://thrift.apache.org/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ hbunke ];
+  };
+
+}