python2.pkgs.rethinkdb: fix

Add missing dependency on `setuptools`, reflect changed license.
This commit is contained in:
Matthias Totschnig 2020-05-14 17:55:10 +02:00 committed by Jon
parent e0e54d6171
commit 0466ae30ea

View File

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, six , six
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +14,7 @@ buildPythonPackage rec {
sha256 = "945b5efdc10f468fc056bd53a4e4224ec4c2fe1a7e83ae47443bbb6e7c7a1f7d"; sha256 = "945b5efdc10f468fc056bd53a4e4224ec4c2fe1a7e83ae47443bbb6e7c7a1f7d";
}; };
propagatedBuildInputs = [ six ]; propagatedBuildInputs = [ six setuptools ];
doCheck = false; doCheck = false;
pythonImportsCheck = [ "rethinkdb" ]; pythonImportsCheck = [ "rethinkdb" ];
@ -21,7 +22,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Python driver library for the RethinkDB database server"; description = "Python driver library for the RethinkDB database server";
homepage = "https://pypi.python.org/pypi/rethinkdb"; homepage = "https://pypi.python.org/pypi/rethinkdb";
license = licenses.agpl3; license = licenses.asl20;
}; };
} }