Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "gym-notices"; 9 version = "0.0.8"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-rSXiAEh8r6NpcoYl/gZOiK2hNGYYUmECZZtGQPK0uRE="; 15 }; 16 17 pythonImportsCheck = [ "gym_notices" ]; 18 19 meta = with lib; { 20 description = "Notices for Python package Gym"; 21 homepage = "https://github.com/Farama-Foundation/gym-notices"; 22 license = licenses.mit; 23 maintainers = with maintainers; [ billhuang ]; 24 }; 25}