1{ lib 2, buildPythonPackage 3, fetchPypi 4, setuptools-scm 5}: 6 7buildPythonPackage rec { 8 pname = "scrap_engine"; 9 version = "1.4.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-5OlnBRFhjFAcVkuuKM5hpeRxi+uvjpzfdhp1+5Nx1IU="; 14 }; 15 16 nativeBuildInputs = [ setuptools-scm ]; 17 18 meta = with lib; { 19 maintainers = with maintainers; [ fgaz ]; 20 description = "A 2D ascii game engine for the terminal"; 21 homepage = "https://github.com/lxgr-linux/scrap_engine"; 22 license = licenses.gpl3Only; 23 }; 24}