depot/third_party/nixpkgs/pkgs/development/python-modules/rethinkdb/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

36 lines
659 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
looseversion,
six,
setuptools,
}:
buildPythonPackage rec {
pname = "rethinkdb";
version = "2.4.10.post1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NjTgPuE91jf9cZa4BHS/RMZNProd0GnqkrlJJnAqYL0=";
};
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;
};
}