My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/rethinkdb/default.nix

28 lines
553 B

{ lib
, buildPythonPackage
, fetchPypi
, six
, setuptools
}:
buildPythonPackage rec {
pname = "rethinkdb";
version = "2.4.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-dV8I9xdTWlXAUSj2vmwoJI+pr/JningWqrh+H59YFcE=";
};
propagatedBuildInputs = [ six setuptools ];
doCheck = false;
pythonImportsCheck = [ "rethinkdb" ];
meta = with lib; {
description = "Python driver library for the RethinkDB database server";
homepage = "https://pypi.python.org/pypi/rethinkdb";
license = licenses.asl20;
};
}