python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / gym-notices / default.nix
blob0a4e2bd4089cce63e5ea731b0349e63942bcc9cb
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "gym-notices";
9   version = "0.0.8";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE=";
15   };
17   pythonImportsCheck = [ "gym_notices" ];
19   meta = with lib; {
20     description = "Notices for Python package Gym";
21     homepage = "https://github.com/Farama-Foundation/gym-notices";
22     license = licenses.mit;
23     maintainers = with maintainers; [ billhuang ];
24   };