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