about summary refs log tree commit diff
path: root/pkgs/development/python-modules/farama-notifications/default.nix
blob: 1fc964a5601780a0639f3e340cbc9e57ee985b6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  numpy,
  setuptools,
}:

buildPythonPackage rec {
  pname = "farama-notifications";
  version = "0.0.4";

  src = fetchFromGitHub {
    owner = "Farama-Foundation";
    repo = pname;
    rev = version;
    hash = "sha256-UUrJ/5t5x54xs1gweNUhwqrMJQXiyrUPn1bBfTsiPcw=";
  };

  format = "pyproject";

  nativeBuildInputs = [ setuptools ];

  pythonImportsCheck = [ "farama_notifications" ];

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