Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / gym-notices / default.nix
blob5b48ea524347dbfb15e264371425acb10096a03f
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "gym-notices";
8   version = "0.0.8";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     hash = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE=";
14   };
16   pythonImportsCheck = [ "gym_notices" ];
18   meta = with lib; {
19     description = "Notices for Python package Gym";
20     homepage = "https://github.com/Farama-Foundation/gym-notices";
21     license = licenses.mit;
22     maintainers = with maintainers; [ billhuang ];
23   };