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

28 lines
552 B
Nix
Raw Normal View History

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