9 buildPythonPackage rec {
14 src = fetchFromGitHub {
18 hash = "sha256-L8eX6/0qiQ4UxbmDicLedzj+oBjYmlK96NpljE/A3eI=";
22 substituteInPlace pyproject.toml \
23 --replace "poetry>=0.12" "poetry-core" \
24 --replace "poetry.masonry" "poetry.core.masonry"
27 nativeBuildInputs = [ poetry-core ];
29 propagatedBuildInputs = [ numpy ];
31 pythonImportsCheck = [ "nbtlib" ];
34 description = "Python library to read and edit nbt data";
36 homepage = "https://github.com/vberlier/nbtlib";
37 changelog = "https://github.com/vberlier/nbtlib/blob/${src.rev}/CHANGELOG.md";
38 license = licenses.mit;
39 maintainers = with maintainers; [ gdd ];