python3Packages.plyfile: 1.0.2 -> 1.1.2

Changed files
+9 -7
pkgs
development
python-modules
plyfile
+9 -7
pkgs/development/python-modules/plyfile/default.nix
···
buildPythonPackage,
# build-system
-
pdm-pep517,
+
pdm-backend,
# dependencies
numpy,
···
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 ];
};
}