2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
2018-03-31 03:56:12 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyechonest";
|
2018-04-04 11:14:24 -07:00
|
|
|
version = "9.0.0";
|
2018-03-31 03:56:12 -07:00
|
|
|
disabled = isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-04-04 11:14:24 -07:00
|
|
|
sha256 = "1da4b3b8b457232a7eb35b59a48390b3c208759b01d596acaa71e6a172b40495";
|
2018-03-31 03:56:12 -07:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-03-31 03:56:12 -07:00
|
|
|
description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/echonest/pyechonest";
|
2018-03-31 03:56:12 -07:00
|
|
|
};
|
|
|
|
}
|