nixpkgs/pkgs/development/python-modules/gym-notices/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

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 ];
};
}