depot/third_party/nixpkgs/pkgs/development/python-modules/rethinkdb/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

28 lines
576 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, six
, setuptools
}:
buildPythonPackage rec {
pname = "rethinkdb";
version = "2.4.7";
src = fetchPypi {
inherit pname version;
sha256 = "945b5efdc10f468fc056bd53a4e4224ec4c2fe1a7e83ae47443bbb6e7c7a1f7d";
};
propagatedBuildInputs = [ six setuptools ];
doCheck = false;
pythonImportsCheck = [ "rethinkdb" ];
meta = with stdenv.lib; {
description = "Python driver library for the RethinkDB database server";
homepage = "https://pypi.python.org/pypi/rethinkdb";
license = licenses.asl20;
};
}