e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
38 lines
652 B
Nix
38 lines
652 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, looseversion
|
|
, six
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rethinkdb";
|
|
version = "2.4.10";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Vez3RH3BH+wOLOmqxLpMC1f9xcnFfXfuZz1Z0kXHRmY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
looseversion
|
|
six
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "rethinkdb" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python driver library for the RethinkDB database server";
|
|
homepage = "https://github.com/RethinkDB/rethinkdb-python";
|
|
license = licenses.asl20;
|
|
};
|
|
|
|
}
|