python3Packages.rethinkdb: fix build

This commit is contained in:
Jonathan Ringer 2020-08-14 23:01:31 -07:00 committed by Frederik Rietdijk
parent 0ec8a8ac9e
commit 88e47033fa

View file

@ -1,6 +1,7 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
@ -12,7 +13,10 @@ buildPythonPackage rec {
sha256 = "945b5efdc10f468fc056bd53a4e4224ec4c2fe1a7e83ae47443bbb6e7c7a1f7d";
};
propagatedBuildInputs = [ six ];
doCheck = false;
pythonImportsCheck = [ "rethinkdb" ];
meta = with stdenv.lib; {
description = "Python driver library for the RethinkDB database server";