Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pyechonest / default.nix
blob3b4f4620e146925a2cc2ff95bd5f4f41ebcbd27f
1 { lib, buildPythonPackage, fetchPypi, isPy3k }:
3 buildPythonPackage rec {
4   pname = "pyechonest";
5   version = "9.0.0";
6   format = "setuptools";
7   disabled = isPy3k;
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "1da4b3b8b457232a7eb35b59a48390b3c208759b01d596acaa71e6a172b40495";
12   };
14   meta = with lib; {
15     description = "Tap into The Echo Nest's Musical Brain for the best music search, information, recommendations and remix tools on the web";
16     homepage = "https://github.com/echonest/pyechonest";
17   };