1{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
2
3buildPythonPackage rec {
4 pname = "pyechonest";
5 version = "8.0.2";
6 disabled = isPy3k;
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560";
11 };
12
13 meta = with stdenv.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}