ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / gym-notices / default.nix
blob1cd974976e4a42de73f3888729145c86a5f8030e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "gym-notices";
8   version = "0.0.8";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE=";
13   };
15   pythonImportsCheck = [ "gym_notices" ];
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   };