Merge pull request #26827 from rvolosatovs/init/spotipy
pythonPackages.spotipy: init at 2.4.4
This commit is contained in:
commit
4b6b811b34
@ -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>";
|
||||
|
21
pkgs/development/python-modules/spotipy/default.nix
Normal file
21
pkgs/development/python-modules/spotipy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user