Skip to content

Commit

Permalink
lastwatch: use python2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Oct 17, 2016
1 parent 9d92df6 commit 1915a72
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions pkgs/applications/audio/lastwatch/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchgit, pythonPackages }:
{ stdenv, fetchgit, python2Packages }:

pythonPackages.buildPythonApplication rec {
python2Packages.buildPythonApplication rec {
name = "lastwatch-${version}";
namePrefix = "";
version = "0.4.1";
Expand All @@ -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";
Expand Down

0 comments on commit 1915a72

Please sign in to comment.