Unverified Commit 4e6ed797 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python311Packages.pyamg: refactor

parent 9473210e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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; [ ];
  };
}