python3Packages.swspotify: 1.2.1 -> 1.2.2 and fix build on darwin

This commit is contained in:
Ben Siraphob 2021-11-03 16:11:00 -05:00
parent a5ac0a33a7
commit 9a64bc2a11
No known key found for this signature in database
GPG key ID: 45F0E5D788143267

View file

@ -1,29 +1,31 @@
{ lib, buildPythonPackage, fetchFromGitHub, requests, flask-cors, dbus-python, pytestCheckHook, mock, isPy27 }:
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, poetry-core, requests
, pytestCheckHook, flask, flask-cors, dbus-python, mock, isPy27 }:
buildPythonPackage rec {
pname = "SwSpotify";
version = "1.2.1";
version = "1.2.2";
disabled = isPy27;
src = fetchFromGitHub {
owner = "SwagLyrics";
repo = "SwSpotify";
rev = "v${version}";
sha256 = "0jxcvy8lw8kpjbl4q6mi11164pvi0w9m9p76bxj2m7i7s5p4dxd4";
sha256 = "sha256-571knnY8LegIbqyPeKUfl+d0suTWAMQHYLN7edKFNdI=";
};
propagatedBuildInputs = [
requests flask-cors dbus-python
requests flask flask-cors dbus-python
];
preConfigure = ''
substituteInPlace setup.py \
--replace 'requests>=2.24.0' 'requests~=2.23' \
--replace 'flask-cors==3.0.8' 'flask-cors'
--replace 'flask==2.0.1' 'flask'
'';
doCheck = !stdenv.isDarwin;
checkPhase = ''
pytest tests/test_spotify.py::LinuxTests
pytest tests/test_spotify.py::${if stdenv.isDarwin then "DarwinTests" else "LinuxTests"}
'';
checkInputs = [ pytestCheckHook mock ];
@ -35,6 +37,6 @@ buildPythonPackage rec {
description = "Library to get the currently playing song and artist from Spotify";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.linux;
platforms = platforms.unix;
};
}