Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 555 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchurl 4}: 5 6buildPythonPackage rec { 7 pname = "gdata"; 8 version = "2.0.18"; 9 10 src = fetchurl { 11 url = "https://gdata-python-client.googlecode.com/files/${pname}-${version}.tar.gz"; 12 sha256 = "1dpxl5hwyyqd71avpm5vkvw8fhlvf9liizmhrq9jphhrx0nx5rsn"; 13 }; 14 15 # Fails with "error: invalid command 'test'" 16 doCheck = false; 17 18 meta = with stdenv.lib; { 19 homepage = https://code.google.com/p/gdata-python-client/; 20 description = "Python client library for Google data APIs"; 21 license = licenses.asl20; 22 }; 23 24}