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