lastwatch: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-17 15:56:49 +02:00
parent e9f8ee3ab4
commit fc9e2b60b5

View File

@ -1,6 +1,6 @@
{ stdenv, fetchgit, pythonPackages }:
{ stdenv, fetchgit, python2Packages }:
pythonPackages.buildPythonApplication rec {
python2Packages.buildPythonApplication rec {
name = "lastwatch-${version}";
namePrefix = "";
version = "0.4.1";
@ -11,14 +11,12 @@ pythonPackages.buildPythonApplication rec {
sha256 = "0nlng3595j5jvnikk8i5hb915zak5zsmfn2306cc4gfcns9xzjwp";
};
pythonPath = [
pythonPackages.pyinotify
pythonPackages.pylast
pythonPackages.mutagen
propagatedBuildInputs = with python2Packages; [
pyinotify
pylast
mutagen
];
propagatedBuildInputs = pythonPath;
meta = {
homepage = "https://github.com/aszlig/LastWatch";
description = "An inotify-based last.fm audio scrobbler";