Merge pull request #26827 from rvolosatovs/init/spotipy

pythonPackages.spotipy: init at 2.4.4
This commit is contained in:
Jörg Thalheim 2017-06-25 08:18:09 +01:00 committed by GitHub
commit 4b6b811b34
3 changed files with 24 additions and 2 deletions

View File

@ -479,6 +479,7 @@
rushmorem = "Rushmore Mushambi <rushmore@webenchanter.com>";
rvl = "Rodney Lorrimar <dev+nix@rodney.id.au>";
rvlander = "Gaëtan André <rvlander@gaetanandre.eu>";
rvolosatovs = "Roman Volosatovs <rvolosatovs@riseup.net";
ryanartecona = "Ryan Artecona <ryanartecona@gmail.com>";
ryansydnor = "Ryan Sydnor <ryan.t.sydnor@gmail.com>";
ryantm = "Ryan Mulligan <ryan@ryantm.com>";

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "spotipy";
name = "spotipy-${version}";
version = "2.4.4";
src = fetchPypi {
inherit pname version;
sha256 = "1l8ya0cln936x0mx2j5ngl1xwpc0r89hs3wcvb8x8paw3d4dl1ab";
};
propagatedBuildInputs = [ requests ];
meta = with stdenv.lib; {
homepage = "http://spotipy.readthedocs.org/";
description = "A light weight Python library for the Spotify Web API";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}

View File

@ -23596,6 +23596,8 @@ in {
};
});
spotipy = callPackage ../development/python-modules/spotipy { };
Pweave = buildPythonPackage (rec {
name = "Pweave-0.25";
@ -23624,8 +23626,6 @@ in {
rope = if isPy3k then null else self.rope;
};
sqlalchemy = callPackage ../development/python-modules/sqlalchemy { };
SQLAlchemy-ImageAttach = buildPythonPackage rec {