2ce5db779a
GitOrigin-RevId: 48037fd90426e44e4bf03e6479e88a11453b9b66
28 lines
553 B
Nix
28 lines
553 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rethinkdb";
|
|
version = "2.4.9";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-dV8I9xdTWlXAUSj2vmwoJI+pr/JningWqrh+H59YFcE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six setuptools ];
|
|
|
|
doCheck = false;
|
|
pythonImportsCheck = [ "rethinkdb" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python driver library for the RethinkDB database server";
|
|
homepage = "https://pypi.python.org/pypi/rethinkdb";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|