summary refs log tree commit diff
path: root/pkgs/applications/audio/lastfmsubmitd/default.nix
blob: d0c3eab69154f13b67c16a6df5b39a85448048c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, pythonPackages }:

pythonPackages.buildPythonApplication rec {
  name = "lastfmsubmitd-${version}";
  namePrefix = ""; 
  version = "1.0.6";

  src = fetchurl {
    url = "https://www.red-bean.com/decklin/lastfmsubmitd/lastfmsubmitd-${version}.tar.gz";
    sha256 = "c2636d5095a95167366bacd458624d67b046e060244fa54ba2c2e3efb79f9b0e";
  };

  doCheck = false;

  installCommand = "python setup.py install --prefix=$out";

  meta = {
    homepage = https://www.red-bean.com/decklin/lastfmsubmitd/;
    description = "An last.fm audio scrobbler and daemon";
  };
}