Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 26 lines 711 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, isPy3k 2, google_api_python_client, simplejson, oauth2client, setuptools 3}: 4 5buildPythonPackage rec { 6 pname = "goobook"; 7 version = "3.4"; 8 disabled = !isPy3k; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "089a95s6g9izsy1fzpz48p6pz0wpngcbbrvsillm1n53492gfhjg"; 13 }; 14 15 propagatedBuildInputs = [ 16 google_api_python_client simplejson oauth2client setuptools 17 ]; 18 19 meta = with stdenv.lib; { 20 description = "Search your google contacts from the command-line or mutt"; 21 homepage = https://pypi.python.org/pypi/goobook; 22 license = licenses.gpl3; 23 maintainers = with maintainers; [ primeos ]; 24 platforms = platforms.unix; 25 }; 26}