mopidy-local: apply patch to fix tests

This commit is contained in:
Lily Foster 2022-12-04 10:11:31 -05:00
parent 0114278a9a
commit 368aa87531
No known key found for this signature in database
GPG Key ID: 49340081E484C893

View File

@ -2,6 +2,7 @@
, lib
, mopidy
, python3Packages
, fetchpatch
}:
python3Packages.buildPythonApplication rec {
@ -13,6 +14,15 @@ python3Packages.buildPythonApplication rec {
sha256 = "18w39mxpv8p17whd6zfw5653d21q138f8xd6ili6ks2g2dbm25i9";
};
patches = [
# Fix tests with newer Mopidy versions >=3.4.0 -- mopidy/mopidy-local#69
(fetchpatch {
name = "update-tests-for-mopidy-3.4.0.patch";
url = "https://github.com/mopidy/mopidy-local/commit/f2c198f8eb253f62100afc58f652e73a76d5a090.patch";
hash = "sha256-jrlZc/pd00S5q9nOfV1OXu+uP/SvH+Xbi7U52aZajj4=";
})
];
propagatedBuildInputs = [
mopidy
python3Packages.uritools