Files
nixpkgs/pkgs/development/python-modules/nbtlib/default.nix
T
Michael Daniels 075e8c2c4f treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

42 lines
931 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
numpy,
}:
buildPythonPackage rec {
pname = "nbtlib";
version = "2.0.4";
pyproject = true;
src = fetchFromGitHub {
owner = "vberlier";
repo = "nbtlib";
rev = "v${version}";
hash = "sha256-L8eX6/0qiQ4UxbmDicLedzj+oBjYmlK96NpljE/A3eI=";
};
prePatch = ''
substituteInPlace pyproject.toml \
--replace "poetry>=0.12" "poetry-core" \
--replace "poetry.masonry" "poetry.core.masonry"
'';
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [ numpy ];
pythonImportsCheck = [ "nbtlib" ];
meta = {
description = "Python library to read and edit nbt data";
mainProgram = "nbt";
homepage = "https://github.com/vberlier/nbtlib";
changelog = "https://github.com/vberlier/nbtlib/blob/${src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ gdd ];
};
}