2017-06-24 22:58:36 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, requests }:
|
2017-06-11 13:01:10 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "spotipy";
|
2020-06-06 07:47:32 +01:00
|
|
|
version = "2.12.0";
|
2017-06-11 13:01:10 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:32 +01:00
|
|
|
sha256 = "f3a08edd516ffaf0731d40fdb7943445fe7b1b412700d042cbd168a726685222";
|
2017-06-11 13:01:10 +01:00
|
|
|
};
|
|
|
|
|
2017-06-24 22:58:36 +01:00
|
|
|
propagatedBuildInputs = [ requests ];
|
2017-06-11 13:01:10 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-03 13:09:48 +00:00
|
|
|
homepage = "https://spotipy.readthedocs.org/";
|
2017-06-11 13:01:10 +01:00
|
|
|
description = "A light weight Python library for the Spotify Web API";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
|
|
};
|
|
|
|
}
|