2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, requests, flask-cors, dbus-python, pytestCheckHook, mock, isPy27 }:
|
2020-09-06 13:10:12 +01:00
|
|
|
|
|
|
|
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 \
|
2021-01-08 21:37:57 +00:00
|
|
|
--replace 'requests>=2.24.0' 'requests~=2.23' \
|
|
|
|
--replace 'flask-cors==3.0.8' 'flask-cors'
|
2020-09-06 13:10:12 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
pytest tests/test_spotify.py::LinuxTests
|
|
|
|
'';
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook mock ];
|
|
|
|
|
2021-01-08 21:37:57 +00:00
|
|
|
pythonImportsCheck = [ "SwSpotify" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-09-06 13:10:12 +01:00
|
|
|
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 ];
|
2021-01-10 10:13:26 +00:00
|
|
|
platforms = platforms.linux;
|
2020-09-06 13:10:12 +01:00
|
|
|
};
|
|
|
|
}
|