From 3bed2afb4c9246eab5a9099bad86e1794dd5794e Mon Sep 17 00:00:00 2001 From: Guilhem Saurel Date: Tue, 1 Jul 2025 18:03:17 +0200 Subject: [PATCH] python3Packages.plyfile: 1.0.2 -> 1.1.2 --- .../python-modules/plyfile/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/plyfile/default.nix b/pkgs/development/python-modules/plyfile/default.nix index d8379c5654ca..babf414c11a4 100644 --- a/pkgs/development/python-modules/plyfile/default.nix +++ b/pkgs/development/python-modules/plyfile/default.nix @@ -4,7 +4,7 @@ buildPythonPackage, # build-system - pdm-pep517, + pdm-backend, # dependencies numpy, @@ -15,25 +15,27 @@ buildPythonPackage rec { pname = "plyfile"; - version = "1.0.2"; + version = "1.1.2"; pyproject = true; src = fetchFromGitHub { owner = "dranjan"; repo = "python-plyfile"; tag = "v${version}"; - hash = "sha256-HlyqljfjuaZoG5f2cfDQj+7KS0en7pW2PPEnpvH8U+E="; + hash = "sha256-J72aoXEMcuHtYaLtzWJ5UGN9HdJTnQ1/8KgdMLtwyr0="; }; - nativeBuildInputs = [ pdm-pep517 ]; + build-system = [ pdm-backend ]; - propagatedBuildInputs = [ numpy ]; + dependencies = [ numpy ]; nativeCheckInputs = [ pytestCheckHook ]; - meta = with lib; { + pythonImportsCheck = [ "plyfile" ]; + + meta = { description = "NumPy-based text/binary PLY file reader/writer for Python"; homepage = "https://github.com/dranjan/python-plyfile"; - maintainers = with maintainers; [ abbradar ]; + maintainers = with lib.maintainers; [ abbradar ]; }; }