about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyechonest/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pyechonest/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pyechonest/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pyechonest/default.nix b/nixpkgs/pkgs/development/python-modules/pyechonest/default.nix
new file mode 100644
index 000000000000..83820629552f
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pyechonest/default.nix
@@ -0,0 +1,17 @@
+{ lib, buildPythonPackage, fetchPypi, isPy3k }:
+
+buildPythonPackage rec {
+  pname = "pyechonest";
+  version = "9.0.0";
+  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";
+  };
+}