treewide: move "extensions" drvs to dir

This cleans up the tree for pkgs/applications somewhat. Should not
change any hashes.
This commit is contained in:
Matthew Bauer
2018-04-17 13:50:49 -05:00
parent 6c182dd14d
commit 52893d5276
25 changed files with 24 additions and 24 deletions
+34
View File
@@ -0,0 +1,34 @@
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Iris";
version = "3.16.3";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1zdlvrqlj1hapaxnskrbp9idziy3rcxhpqhw3x4q25cjbl8m0b0d";
};
propagatedBuildInputs = [
mopidy
mopidy-local-images
] ++ (with pythonPackages; [
configobj
pylast
spotipy
raven
tornado
]);
postPatch = "sed -i /tornado/d setup.py";
# no tests implemented
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/jaedb/Iris;
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}