Merge pull request #57922 from dotlambda/mopidy-iris-3.33.0

mopidy-iris: 3.32.5 -> 3.33.0
This commit is contained in:
Robert Schütz 2019-03-20 11:43:00 +01:00 committed by GitHub
commit f2f577cda9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 8 deletions

View File

@ -2,11 +2,11 @@
pythonPackages.buildPythonApplication rec { pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Iris"; pname = "Mopidy-Iris";
version = "3.32.5"; version = "3.33.0";
src = pythonPackages.fetchPypi { src = pythonPackages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0vs8x26zcakk6c31sc774h2lcdw3syp236vyymmx1jnfsh1jaqpn"; sha256 = "0g00rjkmsnza4gjjdm0cwrpw3gqvmjj58157dvrh7f8k7j0gdvdm";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -14,14 +14,10 @@ pythonPackages.buildPythonApplication rec {
mopidy-local-images mopidy-local-images
] ++ (with pythonPackages; [ ] ++ (with pythonPackages; [
configobj configobj
pylast requests
spotipy
raven
tornado_4 tornado_4
]); ]);
postPatch = "sed -i /tornado/d setup.py";
# no tests implemented # no tests implemented
doCheck = false; doCheck = false;

View File

@ -1,9 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi, certifi, six }: { stdenv, buildPythonPackage, fetchPypi, isPy3k, certifi, six }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pylast"; pname = "pylast";
version = "3.0.0"; version = "3.0.0";
disabled = !isPy3k;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "24051c52011ff18bdeaee9df084ecc90da6c627da86f3cdcfec4af2928e9bc56"; sha256 = "24051c52011ff18bdeaee9df084ecc90da6c627da86f3cdcfec4af2928e9bc56";