mopidy: update to python3

mopidy: 2.3.1 -> 3.0.1
mopidy-iris: 3.43.0 -> 3.44.0
mopidy-spotify: 3.1.0 -> 4.0.1
pykka: 1.2.0 -> 2.0.1
This commit is contained in:
Kevin Rauscher
2020-02-10 09:53:13 +01:00
committed by Frederik Rietdijk
parent 16df275985
commit 05b4fe20a7
5 changed files with 20 additions and 21 deletions
+2 -2
View File
@@ -13,11 +13,11 @@ let
mopidyEnv = buildEnv {
name = "mopidy-with-extensions-${mopidy.version}";
paths = closePropagation cfg.extensionPackages;
pathsToLink = [ "/${python.sitePackages}" ];
pathsToLink = [ "/${python3.sitePackages}" ];
buildInputs = [ makeWrapper ];
postBuild = ''
makeWrapper ${mopidy}/bin/mopidy $out/bin/mopidy \
--prefix PYTHONPATH : $out/${python.sitePackages}
--prefix PYTHONPATH : $out/${python3.sitePackages}
'';
};
in {