nixpkgs/pkgs/development/python-modules/gym-notices/default.nix
Bill Huang 06c9d4d95c
gym: 0.21.0 -> 0.26.2
add importlib-metadata as dependency when python < 3.10
2022-11-01 22:22:54 +08:00

25 lines
506 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "gym-notices";
version = "0.0.8";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE=";
};
pythonImportsCheck = [ "gym_notices" ];
meta = with lib; {
description = "Notices for Python package Gym";
homepage = "https://github.com/Farama-Foundation/gym-notices";
license = licenses.mit;
maintainers = with maintainers; [ billhuang ];
};
}