mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
Signed-off-by: phanirithvij <phanirithvij2000@gmail.com>
(cherry picked from commit 2c190b59c1)
31 lines
697 B
Nix
31 lines
697 B
Nix
{
|
|
lib,
|
|
fetchFromCodeberg,
|
|
buildPythonPackage,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rpatool";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromCodeberg {
|
|
owner = "shiz";
|
|
repo = "rpatool";
|
|
tag = "v${version}";
|
|
hash = "sha256-AHFL0pahwS8/MH13NgPiKtKAP+nBqfbcUVWzV+Jdco0=";
|
|
};
|
|
|
|
pyproject = true;
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "rpatool" ];
|
|
|
|
meta = {
|
|
homepage = "https://codeberg.org/shiz/rpatool";
|
|
description = "Simple tool allowing you to create, modify and extract Ren'Py Archive (.rpa/.rpi) files";
|
|
mainProgram = "rpatool";
|
|
license = lib.licenses.wtfpl;
|
|
maintainers = with lib.maintainers; [ ulysseszhan ];
|
|
};
|
|
}
|