mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
26 lines
533 B
Nix
26 lines
533 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gym-notices";
|
|
version = "0.0.8";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "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 ];
|
|
};
|
|
}
|