Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / gdata / default.nix
blobbb334d63435b73efb0579710a60ac01b3e7e08f5
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 }:
6 buildPythonPackage rec {
7   pname = "gdata";
8   version = "2.0.18";
9   format = "setuptools";
11   src = fetchurl {
12     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gdata-python-client/${pname}-${version}.tar.gz";
13     sha256 = "1dpxl5hwyyqd71avpm5vkvw8fhlvf9liizmhrq9jphhrx0nx5rsn";
14   };
16   # Fails with "error: invalid command 'test'"
17   doCheck = false;
19   meta = with lib; {
20     homepage = "https://github.com/google/gdata-python-client";
21     description = "Python client library for Google data APIs";
22     license = licenses.asl20;
23   };