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

View file

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