1{ lib 2, buildPythonPackage 3, fetchurl 4}: 5 6buildPythonPackage rec { 7 pname = "gdata"; 8 version = "2.0.18"; 9 10 src = fetchurl { 11 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gdata-python-client/${pname}-${version}.tar.gz"; 12 sha256 = "1dpxl5hwyyqd71avpm5vkvw8fhlvf9liizmhrq9jphhrx0nx5rsn"; 13 }; 14 15 # Fails with "error: invalid command 'test'" 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/google/gdata-python-client"; 20 description = "Python client library for Google data APIs"; 21 license = licenses.asl20; 22 }; 23 24}