nixpkgs/pkgs/development/python-modules/scrap-engine/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
524 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, setuptools-scm
}:
buildPythonPackage rec {
pname = "scrap_engine";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-5OlnBRFhjFAcVkuuKM5hpeRxi+uvjpzfdhp1+5Nx1IU=";
};
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;
};
}