about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pylast/default.nix
blob: 12fac476f633c0318fe4cdbdf34cb5855a9d2083 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, buildPythonPackage, fetchPypi, isPy3k, certifi, six
, setuptools_scm
}:

buildPythonPackage rec {
  pname = "pylast";
  version = "4.0.0";

  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "8ec555d6c4c1b474e9b3c96c3786abd38303a1a5716d928b0f3cfdcb4499b093";
  };

  nativeBuildInputs = [ setuptools_scm ];
  propagatedBuildInputs = [ certifi six ];

  # tests require last.fm credentials
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = "https://github.com/pylast/pylast";
    description = "A python interface to last.fm (and compatibles)";
    license = licenses.asl20;
    maintainers = with maintainers; [ rvolosatovs ];
  };
}