Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 24 lines 495 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "rethinkdb"; 8 version = "2.4.4.post1"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "e1c1f8ad93bc1c6f2aaa73afc333c57d505d8cc08c437d78a5c1eb8dc4b7e8c2"; 13 }; 14 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 description = "Python driver library for the RethinkDB database server"; 19 homepage = "https://pypi.python.org/pypi/rethinkdb"; 20 license = licenses.agpl3; 21 broken = true; 22 }; 23 24}