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,
fetchFromGitHub,
numpy,
numpy_2,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "gsd";
version = "3.3.1";
format = "setuptools";
version = "3.3.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "glotzerlab";
repo = pname;
repo = "gsd";
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 ];