python2.pkgs.rethinkdb: fix

Add missing dependency on `setuptools`, reflect changed license.
gstqt5
Matthias Totschnig 2020-05-14 17:55:10 +02:00 committed by Jon
parent e0e54d6171
commit 0466ae30ea
1 changed files with 3 additions and 2 deletions

View File

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