python3Packages.plyfile: 1.0.2 -> 1.1.2

This commit is contained in:
Guilhem Saurel
2025-08-01 21:54:19 +02:00
parent a19a8e52c3
commit 3bed2afb4c
@@ -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 ];
};
}