nixpkgs/pkgs/development/python-modules/spotipy/default.nix

21 lines
522 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, requests }:
2017-06-11 14:01:10 +02:00
buildPythonPackage rec {
pname = "spotipy";
version = "2.10.0";
2017-06-11 14:01:10 +02:00
src = fetchPypi {
inherit pname version;
sha256 = "0s2f9yxhfkfipbb06965gfjq4lg0khp5vcykijrx6dzxyh20vggm";
2017-06-11 14:01:10 +02:00
};
propagatedBuildInputs = [ requests ];
2017-06-11 14:01:10 +02:00
meta = with stdenv.lib; {
homepage = "https://spotipy.readthedocs.org/";
2017-06-11 14:01:10 +02:00
description = "A light weight Python library for the Spotify Web API";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}