pythonPackages.pyechonest: Move to own file
Also disable on Py3k due to syntax errors.
This commit is contained in:
committed by
Frederik Rietdijk
parent
111b4b859f
commit
85e3b5bd41
17
pkgs/development/python-modules/pyechonest/default.nix
Normal file
17
pkgs/development/python-modules/pyechonest/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyechonest";
|
||||
version = "8.0.2";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560";
|
||||
};
|
||||
|
||||
meta = with stdenv.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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user