python3Packages.litemapy: init at 0.7.2b0

Co-authored-by: Ryan Lahfa <masterancpp@gmail.com>
This commit is contained in:
gabriel-doriath-dohler 2023-06-30 17:10:13 +02:00
parent 3afa21632f
commit d0837b6bdf
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, nbtlib
}:
buildPythonPackage rec {
pname = "litemapy";
version = "0.7.2b0";
format = "setuptools";
src = fetchFromGitHub {
owner = "SmylerMC";
repo = "litemapy";
rev = "v${version}";
hash = "sha256-VfEo/JLeU17bEkvc8oZYfq19RsHl6QvKv0sGZYQjYhE=";
};
propagatedBuildInputs = [
nbtlib
];
pythonImportsCheck = [ "litemapy" ];
meta = with lib; {
description = "A Python library to read and edit Litematica's schematic file format";
homepage = "https://github.com/SmylerMC/litemapy";
changelog = "https://github.com/SmylerMC/litemapy/blob/${src.rev}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ gdd ];
};
}

View file

@ -5892,6 +5892,8 @@ self: super: with self; {
lit = callPackage ../development/python-modules/lit { };
litemapy = callPackage ../development/python-modules/litemapy { };
littleutils = callPackage ../development/python-modules/littleutils { };
livelossplot = callPackage ../development/python-modules/livelossplot { };