Commit afc6eee8 authored by R. RyanTM's avatar R. RyanTM Committed by Gaetan Lepage
Browse files

python3Packages.farama-notifications: 0.0.4 -> 0.0.6

parent 7763c7ce
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -5,27 +5,28 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "farama-notifications";
  version = "0.0.4";
  version = "0.0.6";
  pyproject = true;
  __structuredAttrs = true;

  src = fetchFromGitHub {
    owner = "Farama-Foundation";
    repo = "farama-notifications";
    rev = version;
    hash = "sha256-UUrJ/5t5x54xs1gweNUhwqrMJQXiyrUPn1bBfTsiPcw=";
    tag = finalAttrs.version;
    hash = "sha256-gvOLitPqpJW1kLVZUkf8UVhKdjhCZhu9ORmdLHzil1E=";
  };

  pyproject = true;

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  pythonImportsCheck = [ "farama_notifications" ];

  meta = {
    description = "Allows for providing notifications on import to all Farama Packages";
    homepage = "https://github.com/Farama-Foundation/Farama-Notifications";
    changelog = "https://github.com/Farama-Foundation/Farama-Notifications/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ GaetanLepage ];
  };
}
})