Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 23 lines 464 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "rethinkdb"; 8 version = "2.3.0.post6"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "05qwkmq6kn437ywyjs02jxbry720gw39q4z4jdb0cnbbi76lwddm"; 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 }; 22 23}