504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
29 lines
576 B
Nix
29 lines
576 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rethinkdb";
|
|
version = "2.4.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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;
|
|
};
|
|
|
|
}
|