summary refs log tree commit diff
path: root/pkgs/development/python-modules/spotipy/default.nix
blob: e728739c294d998ab94381eed74b260c36101bca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, buildPythonPackage, fetchPypi, requests }:

buildPythonPackage rec {
  pname = "spotipy";
  version = "2.6.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1jpj9ljc5g89jbnzwnmgz5s6jdrsgd6g9s09igvbw3pppi9070h0";
  };

  propagatedBuildInputs = [ requests ];

  meta = with stdenv.lib; {
    homepage = https://spotipy.readthedocs.org/;
    description = "A light weight Python library for the Spotify Web API";
    license = licenses.mit;
    maintainers = [ maintainers.rvolosatovs ];
  };
}