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