mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 08:28:20 +00:00
python3Packages.swspotify: 1.2.1 -> 1.2.2 and fix build on darwin
This commit is contained in:
parent
a5ac0a33a7
commit
9a64bc2a11
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue