1{ stdenv, buildPythonPackage, fetchPypi, certifi, six }: 2 3buildPythonPackage rec { 4 pname = "pylast"; 5 version = "2.4.0"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "8e883f13b70c3879fc821bbee1accf27ea4e68898f4462cbbe358f615adcbbfb"; 10 }; 11 12 propagatedBuildInputs = [ certifi six ]; 13 14 # tests require last.fm credentials 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 homepage = https://github.com/pylast/pylast; 19 description = "A python interface to last.fm (and compatibles)"; 20 license = licenses.asl20; 21 maintainers = with maintainers; [ rvolosatovs ]; 22 }; 23}