mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 04:03:56 +00:00
0215034f25
when they already rely on SRI hashes.
25 lines
504 B
Nix
25 lines
504 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "gym-notices";
|
|
version = "0.0.8";
|
|
|
|
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 ];
|
|
};
|
|
}
|
|
|