aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyechonest
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-03-31 12:56:12 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-04 19:45:58 +0200
commit85e3b5bd41ff691022b40669800b1a0127c25a0d (patch)
tree3e465d79987ef5723e2869ad9f5ec38d99a333ce /pkgs/development/python-modules/pyechonest
parent111b4b859f3f71e18e37147b4324320afdea3e29 (diff)
pythonPackages.pyechonest: Move to own file
Also disable on Py3k due to syntax errors.
Diffstat (limited to 'pkgs/development/python-modules/pyechonest')
-rw-r--r--pkgs/development/python-modules/pyechonest/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyechonest/default.nix b/pkgs/development/python-modules/pyechonest/default.nix
new file mode 100644
index 000000000000..6a2559710a90
--- /dev/null
+++ b/pkgs/development/python-modules/pyechonest/default.nix
@@ -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;
+ };
+}