depot/third_party/nixpkgs/pkgs/development/python-modules/pylast/default.nix
Default email 2ce89355c3 Project import generated by Copybara.
GitOrigin-RevId: 22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1
2020-06-15 17:56:04 +02:00

28 lines
689 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, certifi, six
, setuptools_scm
}:
buildPythonPackage rec {
pname = "pylast";
version = "3.2.1";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "3c984be04c9a22a884c3106a7f75749466d27c68870d6fb7e1f56b71becea7c0";
};
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 ];
};
}