Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / litemapy / default.nix
blob6040cb1f47f1becc7be7aaa48bf8df673180e3d7
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , nbtlib
5 }:
7 buildPythonPackage rec {
8   pname = "litemapy";
9   version = "0.7.2b0";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "SmylerMC";
14     repo = "litemapy";
15     rev = "v${version}";
16     hash = "sha256-VfEo/JLeU17bEkvc8oZYfq19RsHl6QvKv0sGZYQjYhE=";
17   };
19   propagatedBuildInputs = [
20     nbtlib
21   ];
23   pythonImportsCheck = [ "litemapy" ];
25   meta = with lib; {
26     description = "A Python library to read and edit Litematica's schematic file format";
27     homepage = "https://github.com/SmylerMC/litemapy";
28     changelog = "https://github.com/SmylerMC/litemapy/blob/${src.rev}/CHANGELOG.md";
29     license = licenses.gpl3Only;
30     maintainers = with maintainers; [ gdd ];
31   };