python311Packages.pyamg: refactor

This commit is contained in:
Fabian Affolter 2024-03-21 07:07:08 +01:00 committed by GitHub
parent 9473210e88
commit 4e6ed797af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -13,9 +13,9 @@
buildPythonPackage rec {
pname = "pyamg";
version = "5.1.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
@ -54,6 +54,6 @@ buildPythonPackage rec {
homepage = "https://github.com/pyamg/pyamg";
changelog = "https://github.com/pyamg/pyamg/blob/v${version}/changelog.md";
license = licenses.mit;
maintainers = [ ];
maintainers = with maintainers; [ ];
};
}