mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
python3Packages.litemapy: init at 0.7.2b0
Co-authored-by: Ryan Lahfa <masterancpp@gmail.com>
This commit is contained in:
parent
3afa21632f
commit
d0837b6bdf
32
pkgs/development/python-modules/litemapy/default.nix
Normal file
32
pkgs/development/python-modules/litemapy/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user