Skip to content

Commit

Permalink
python3Packages.swspotify: init at 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
siraben authored and Jon committed Oct 11, 2020
1 parent 8cae8e5 commit 9b1f2a0
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/development/python-modules/swspotify/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ stdenv, lib, buildPythonPackage, fetchFromGitHub, requests, flask-cors, dbus-python, pytestCheckHook, mock, isPy27 }:

buildPythonPackage rec {
pname = "SwSpotify";
version = "1.2.1";
disabled = isPy27;

src = fetchFromGitHub {
owner = "SwagLyrics";
repo = "SwSpotify";
rev = "v${version}";
sha256 = "0jxcvy8lw8kpjbl4q6mi11164pvi0w9m9p76bxj2m7i7s5p4dxd4";
};

propagatedBuildInputs = [
requests flask-cors dbus-python
];

preConfigure = ''
substituteInPlace setup.py \
--replace 'requests>=2.24.0' 'requests~=2.23'
'';

checkPhase = ''
pytest tests/test_spotify.py::LinuxTests
'';

checkInputs = [ pytestCheckHook mock ];

meta = with stdenv.lib; {
homepage = "https://github.com/SwagLyrics/SwSpotify";
description = "Library to get the currently playing song and artist from Spotify";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = lib.platforms.linux;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6882,6 +6882,8 @@ in {

swagger-ui-bundle = callPackage ../development/python-modules/swagger-ui-bundle { };

swspotify = callPackage ../development/python-modules/swspotify { };

sybil = callPackage ../development/python-modules/sybil { };

symengine = callPackage ../development/python-modules/symengine { symengine = pkgs.symengine; };
Expand Down

0 comments on commit 9b1f2a0

Please sign in to comment.