python312Packages.numpy-stl: 3.1.1 -> 3.1.2 (#349599)

This commit is contained in:
OTABI Tomoya 2024-10-19 11:06:13 +09:00 committed by GitHub
commit acd6955744
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,28 +2,32 @@
lib,
buildPythonPackage,
cython,
enum34,
fetchPypi,
nine,
numpy,
pytestCheckHook,
python-utils,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "numpy-stl";
version = "3.1.1";
format = "setuptools";
version = "3.1.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-947qYsgJOL9T6pFPpbbJL0SPDqtWCeDlpzfd4DlAQzQ=";
pname = "numpy_stl";
inherit version;
hash = "sha256-crRpUN+jZC3xx7hzz6eKVIUzckuQdHjFZ9tC/fV+49I=";
};
propagatedBuildInputs = [
cython
enum34
nine
build-system = [ setuptools ];
nativeBuildInputs = [ cython ];
dependencies = [
numpy
python-utils
];
@ -35,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Library to make reading, writing and modifying both binary and ascii STL files easy";
homepage = "https://github.com/WoLpH/numpy-stl/";
changelog = "https://github.com/wolph/numpy-stl/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = [ ];
};