1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "gym-notices";
8 version = "0.0.8";
9
10 src = fetchPypi {
11 inherit pname version;
12 hash = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE=";
13 };
14
15 pythonImportsCheck = [ "gym_notices" ];
16
17 meta = with lib; {
18 description = "Notices for Python package Gym";
19 homepage = "https://github.com/Farama-Foundation/gym-notices";
20 license = licenses.mit;
21 maintainers = with maintainers; [ billhuang ];
22 };
23}
24