depot/third_party/nixpkgs/pkgs/development/python-modules/scrap-engine/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

25 lines
530 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "scrap_engine";
version = "1.4.1";
src = fetchPypi {
inherit pname version;
hash = "sha256-qxzbVYFcSKcL2HtMlH9epO/sCx9HckWAt/NyVD8QJBQ=";
};
nativeBuildInputs = [ setuptools-scm ];
meta = with lib; {
maintainers = with maintainers; [ fgaz ];
description = "A 2D ascii game engine for the terminal";
homepage = "https://github.com/lxgr-linux/scrap_engine";
license = licenses.gpl3Only;
};
}