Merge pull request #241323 from r-ryantm/auto-update/python310Packages.pyamg

python310Packages.pyamg: 5.0.0 -> 5.0.1
This commit is contained in:
Fabian Affolter 2023-07-03 22:47:45 +02:00 committed by GitHub
commit 77d0269595
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,15 +6,19 @@
, pytest
, pybind11
, setuptools-scm
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyamg";
version = "5.0.0";
version = "5.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-6rlnIo9hQ0LOI8e01rvKJa2LknpFy3Ym0e8XyfBioC4=";
hash = "sha256-XwSKAXQzQ64NTIYjBgBzhs+5sURTxHrf2tJ363mkbVA=";
};
nativeBuildInputs = [
@ -43,6 +47,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Algebraic Multigrid Solvers in Python";
homepage = "https://github.com/pyamg/pyamg";
changelog = "https://github.com/pyamg/pyamg/blob/v${version}/changelog.md";
license = licenses.mit;
maintainers = [ maintainers.costrouc ];
};