python312Packages.gsd: 3.3.1 -> 3.3.2 (#340176)

This commit is contained in:
Markus Kowalewski 2024-09-09 15:47:08 +02:00 committed by GitHub
commit e32536b3f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,27 +4,33 @@
cython, cython,
fetchFromGitHub, fetchFromGitHub,
numpy, numpy,
numpy_2,
pytestCheckHook, pytestCheckHook,
pythonOlder, pythonOlder,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "gsd"; pname = "gsd";
version = "3.3.1"; version = "3.3.2";
format = "setuptools"; pyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "glotzerlab"; owner = "glotzerlab";
repo = pname; repo = "gsd";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-9C66k3OI+Xw+DPe8ZxuQmOiXmPWDTvJ2tVLHhfsEhgU="; hash = "sha256-4NxZPu4DrwQW6qHeYairefabfN7J0+48tvVwi6ti4vk=";
}; };
nativeBuildInputs = [ cython ]; build-system = [
cython
numpy_2
setuptools
];
propagatedBuildInputs = [ numpy ]; dependencies = [ numpy ];
nativeCheckInputs = [ pytestCheckHook ]; nativeCheckInputs = [ pytestCheckHook ];