mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
python311Packages.minari: init at 0.4.3
This commit is contained in:
parent
b22991a6b1
commit
988e24e43b
88
pkgs/development/python-modules/minari/default.nix
Normal file
88
pkgs/development/python-modules/minari/default.nix
Normal file
@ -0,0 +1,88 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, wheel
|
||||
, google-cloud-storage
|
||||
, gymnasium
|
||||
, h5py
|
||||
, numpy
|
||||
, packaging
|
||||
, portion
|
||||
, rich
|
||||
, tqdm
|
||||
, typer
|
||||
, typing-extensions
|
||||
, imageio
|
||||
, nbmake
|
||||
, pytest
|
||||
, pytest-markdown-docs
|
||||
, pytestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "minari";
|
||||
version = "0.4.3";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Farama-Foundation";
|
||||
repo = "Minari";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-DwuANo0PCb2pPTVST8EwuJHe5HKRV8JIpFBpSqoJNh8=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
google-cloud-storage
|
||||
gymnasium
|
||||
h5py
|
||||
numpy
|
||||
packaging
|
||||
portion
|
||||
rich
|
||||
tqdm
|
||||
typer
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
testing = [
|
||||
# gymnasium-robotics
|
||||
imageio
|
||||
nbmake
|
||||
pytest
|
||||
pytest-markdown-docs
|
||||
];
|
||||
};
|
||||
|
||||
pythonImportsCheck = [
|
||||
"minari"
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# Require internet access
|
||||
"tests/dataset/test_dataset_download.py"
|
||||
"tests/test_cli.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A standard format for offline reinforcement learning datasets, with popular reference datasets and related utilities";
|
||||
homepage = "https://github.com/Farama-Foundation/Minari";
|
||||
changelog = "https://github.com/Farama-Foundation/Minari/releases/tag/v${version}";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = with maintainers; [ GaetanLepage ];
|
||||
mainProgram = "minari";
|
||||
};
|
||||
}
|
@ -31399,6 +31399,8 @@ with pkgs;
|
||||
|
||||
manuskript = libsForQt5.callPackage ../applications/editors/manuskript { };
|
||||
|
||||
minari = python3Packages.toPythonApplication python3Packages.minari;
|
||||
|
||||
mindforger = libsForQt5.callPackage ../applications/editors/mindforger { };
|
||||
|
||||
mi2ly = callPackage ../applications/audio/mi2ly { };
|
||||
|
@ -7427,6 +7427,8 @@ self: super: with self; {
|
||||
|
||||
millheater = callPackage ../development/python-modules/millheater { };
|
||||
|
||||
minari = callPackage ../development/python-modules/minari { };
|
||||
|
||||
mindsdb-evaluator = callPackage ../development/python-modules/mindsdb-evaluator { };
|
||||
|
||||
minexr = callPackage ../development/python-modules/minexr { };
|
||||
|
Loading…
Reference in New Issue
Block a user