blob: dc8b004eedd3b7dc5d8f8cae63871d2e70d400fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
looseversion,
six,
setuptools,
}:
buildPythonPackage rec {
pname = "rethinkdb";
version = "2.4.10.post1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-NjTgPuE91jf9cZa4BHS/RMZNProd0GnqkrlJJnAqYL0=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
looseversion
six
];
doCheck = false;
pythonImportsCheck = [ "rethinkdb" ];
meta = {
description = "Python driver library for the RethinkDB database server";
homepage = "https://github.com/RethinkDB/rethinkdb-python";
license = lib.licenses.asl20;
};
}
|