mopidy: Add some more dependencies needed for the HTTP frontend
This commit is contained in:
parent
14ceed2ddb
commit
4d181e526e
|
@ -14,7 +14,7 @@ pythonPackages.buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
gst_python pygobject pykka pyspotify pylast
|
gst_python pygobject pykka pyspotify pylast cherrypy ws4py
|
||||||
];
|
];
|
||||||
|
|
||||||
# python zip complains about old timestamps
|
# python zip complains about old timestamps
|
||||||
|
|
|
@ -14,7 +14,7 @@ pythonPackages.buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
gst_python pygobject pykka pyspotify pylast
|
gst_python pygobject pykka pyspotify pylast cherrypy ws4py
|
||||||
];
|
];
|
||||||
|
|
||||||
# python zip complains about old timestamps
|
# python zip complains about old timestamps
|
||||||
|
|
|
@ -4718,4 +4718,30 @@ pythonPackages = python.modules // rec {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ws4py = buildPythonPackage rec {
|
||||||
|
name = "ws4py-${version}";
|
||||||
|
|
||||||
|
version = "git-20130303";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://github.com/Lawouach/WebSocket-for-Python.git";
|
||||||
|
rev = "ace276500ca7e4c357595e3773be151d37bcd6e2";
|
||||||
|
sha256 = "04m4m3ncn7g4rb81xg5n28imns7rsq8d2w98gjpaib6vlmyly3g1";
|
||||||
|
};
|
||||||
|
|
||||||
|
# python zip complains about old timestamps
|
||||||
|
preConfigure = ''
|
||||||
|
find -print0 | xargs -0 touch
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Tests depend on other packages
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = https://ws4py.readthedocs.org;
|
||||||
|
description = "A WebSocket package for Python";
|
||||||
|
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
}; in pythonPackages
|
}; in pythonPackages
|
||||||
|
|
Loading…
Reference in New Issue