diff --git a/pkgs/development/python-modules/astropy-extension-helpers/default.nix b/pkgs/development/python-modules/astropy-extension-helpers/default.nix index 8e5a2fda3301..90162d431caf 100644 --- a/pkgs/development/python-modules/astropy-extension-helpers/default.nix +++ b/pkgs/development/python-modules/astropy-extension-helpers/default.nix @@ -3,17 +3,20 @@ , fetchPypi , findutils , pytestCheckHook +, pythonOlder , setuptools-scm }: buildPythonPackage rec { pname = "extension-helpers"; - version = "0.1"; + version = "1.0.0"; format = "pyproject"; + disabled = pythonOlder "3.6"; + src = fetchPypi { inherit pname version; - sha256 = "10iqjzmya2h4sk765dlm1pbqypwlqyh8rw59a5m9i63d3klnz2mc"; + sha256 = "ca1bfac67c79cf4a7a0c09286ce2a24eec31bf17715818d0726318dd0e5050e6"; }; nativeBuildInputs = [ @@ -22,7 +25,10 @@ buildPythonPackage rec { patches = [ ./permissions.patch ]; - checkInputs = [ findutils pytestCheckHook ]; + checkInputs = [ + findutils + pytestCheckHook + ]; # avoid import mismatch errors, as conftest.py is copied to build dir pytestFlagsArray = [ @@ -37,6 +43,6 @@ buildPythonPackage rec { description = "Utilities for building and installing packages in the Astropy ecosystem"; homepage = "https://github.com/astropy/extension-helpers"; license = licenses.bsd3; - maintainers = [ maintainers.rmcgibbo ]; + maintainers = with maintainers; [ rmcgibbo ]; }; }