{ lib, buildPythonPackage, fetchFromGitHub, setuptools, }: buildPythonPackage rec { pname = "farama-notifications"; version = "0.0.4"; src = fetchFromGitHub { owner = "Farama-Foundation"; repo = "farama-notifications"; rev = version; hash = "sha256-UUrJ/5t5x54xs1gweNUhwqrMJQXiyrUPn1bBfTsiPcw="; }; pyproject = true; nativeBuildInputs = [ setuptools ]; pythonImportsCheck = [ "farama_notifications" ]; meta = { description = "Allows for providing notifications on import to all Farama Packages"; homepage = "https://github.com/Farama-Foundation/Farama-Notifications"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }