3
0
Fork 0
forked from mirrors/nixpkgs

pylast: New package, version 0.5.11.

pylast is an interface for the last.fm API version 2.0.
It also supports services such as Libre.fm, which has a similar API.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
aszlig 2012-08-31 14:47:47 +02:00
parent bb7daf767b
commit 96ab1aa9df
No known key found for this signature in database
GPG key ID: D0EBD0EC8C2DC961

View file

@ -974,6 +974,25 @@ let pythonPackages = python.modules // rec {
};
pylast = buildPythonPackage rec {
name = "pylast-${version}";
version = "0.5.11";
src = fetchurl {
url = "http://pypi.python.org/packages/source/p/pylast/${name}.tar.gz";
md5 = "506cf1b13020b3ed2f3c845ea0c9830e";
};
doCheck = false;
meta = {
homepage = http://code.google.com/p/pylast/;
description = "A python interface to last.fm (and compatibles)";
license = pkgs.lib.licenses.asl20;
};
};
libcloud = buildPythonPackage (rec {
name = "libcloud-0.3.1";