Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.pyechonest: Move to own file

Also disable on Py3k due to syntax errors.

(cherry picked from commit 85e3b5bd41ff691022b40669800b1a0127c25a0d)

authored by Elis Hirwing and committed by xeji 2a9fdf9c a74311f2

+18 -13
+17
pkgs/development/python-modules/pyechonest/default.nix
···
··· 1 + { stdenv, buildPythonPackage, fetchPypi, isPy3k }: 2 + 3 + buildPythonPackage rec { 4 + pname = "pyechonest"; 5 + version = "8.0.2"; 6 + disabled = isPy3k; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560"; 11 + }; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web"; 15 + homepage = https://github.com/echonest/pyechonest; 16 + }; 17 + }
+1 -13
pkgs/top-level/python-packages.nix
··· 1640 1641 py4j = callPackage ../development/python-modules/py4j { }; 1642 1643 - pyechonest = self.buildPythonPackage rec { 1644 - name = "pyechonest-8.0.2"; 1645 - 1646 - src = pkgs.fetchurl { 1647 - url = "mirror://pypi/p/pyechonest/pyechonest-8.0.2.tar.gz"; 1648 - sha256 = "496265f4b7d33483ec153b9e1b8333fe959b115f7e781510089c8313b7d86560"; 1649 - }; 1650 - 1651 - meta = { 1652 - description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web"; 1653 - homepage = https://github.com/echonest/pyechonest; 1654 - }; 1655 - }; 1656 1657 billiard = buildPythonPackage rec { 1658 name = "billiard-${version}";
··· 1640 1641 py4j = callPackage ../development/python-modules/py4j { }; 1642 1643 + pyechonest = callPackage ../development/python-modules/pyechonest { }; 1644 1645 billiard = buildPythonPackage rec { 1646 name = "billiard-${version}";