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