1{ lib, buildPythonPackage, fetchPypi, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "pyechonest";
5 version = "9.0.0";
6 disabled = isPy3k;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1da4b3b8b457232a7eb35b59a48390b3c208759b01d596acaa71e6a172b40495";
11 };
12
13 meta = with lib; {
14 description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web";
15 homepage = "https://github.com/echonest/pyechonest";
16 };
17}