nixpkgs/pkgs/development/python-modules/rethinkdb/default.nix

29 lines
566 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2020-08-15 07:01:31 +01:00
, six
, setuptools
}:
buildPythonPackage rec {
pname = "rethinkdb";
2020-06-05 18:44:37 +01:00
version = "2.4.7";
src = fetchPypi {
inherit pname version;
2020-06-05 18:44:37 +01:00
sha256 = "945b5efdc10f468fc056bd53a4e4224ec4c2fe1a7e83ae47443bbb6e7c7a1f7d";
};
propagatedBuildInputs = [ six setuptools ];
2020-08-15 07:01:31 +01:00
doCheck = false;
2020-08-15 07:01:31 +01:00
pythonImportsCheck = [ "rethinkdb" ];
meta = with lib; {
description = "Python driver library for the RethinkDB database server";
homepage = "https://pypi.python.org/pypi/rethinkdb";
license = licenses.asl20;
};
}