linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / gdata / default.nix
blob94430d0d9411017d773797b88bd6c77e13e1e05f
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 }:
6 buildPythonPackage rec {
7   pname = "gdata";
8   version = "2.0.18";
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   };
15   # Fails with "error: invalid command 'test'"
16   doCheck = false;
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   };