about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/scrap-engine/default.nix
blob: 2726f3675fc3a33d2b787d754fc0335bb65d674c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ 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;
  };
}