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

View File

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