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