{ lib, buildPythonPackage, fetchFromGitHub, flaky, hatch-vcs, hatchling, httpx, importlib-metadata, pytestCheckHook, pythonOlder, }: buildPythonPackage rec { pname = "pylast"; version = "5.5.0"; pyproject = true; disabled = pythonOlder "3.9"; src = fetchFromGitHub { owner = "pylast"; repo = "pylast"; tag = version; hash = "sha256-mPdFG3wqdAyluD37cy2q6oO/x9NgXpOb57s4nU05EzQ="; }; build-system = [ hatch-vcs hatchling ]; dependencies = [ httpx ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]; nativeCheckInputs = [ pytestCheckHook flaky ]; pythonImportsCheck = [ "pylast" ]; meta = with lib; { description = "Python interface to last.fm (and compatibles)"; homepage = "https://github.com/pylast/pylast"; changelog = "https://github.com/pylast/pylast/releases/tag/${src.tag}"; license = licenses.asl20; maintainers = with maintainers; [ fab rvolosatovs ]; }; }