python310Packages.scrap-engine: init at 1.2.0
This commit is contained in:
parent
6616de389e
commit
e36d99a5df
24
pkgs/development/python-modules/scrap-engine/default.nix
Normal file
24
pkgs/development/python-modules/scrap-engine/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, setuptools-scm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "scrap_engine";
|
||||
version = "1.2.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-dn/9wxK1UHd3cc3Jo1Cp9tynOFUlndH+cZfIc244ysE=";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
@ -9502,6 +9502,8 @@ in {
|
||||
|
||||
scramp = callPackage ../development/python-modules/scramp { };
|
||||
|
||||
scrap-engine = callPackage ../development/python-modules/scrap-engine { };
|
||||
|
||||
scrapy = callPackage ../development/python-modules/scrapy { };
|
||||
|
||||
scrapy-deltafetch = callPackage ../development/python-modules/scrapy-deltafetch { };
|
||||
|
Loading…
Reference in New Issue
Block a user