diff --git a/pkgs/development/python-modules/pytest-astropy/default.nix b/pkgs/development/python-modules/pytest-astropy/default.nix index f620e14a51b6..9228e00bf94d 100644 --- a/pkgs/development/python-modules/pytest-astropy/default.nix +++ b/pkgs/development/python-modules/pytest-astropy/default.nix @@ -2,7 +2,6 @@ lib, buildPythonPackage, fetchPypi, - attrs, hypothesis, pytest, pytest-arraydiff, @@ -14,7 +13,6 @@ pytest-remotedata, setuptools, setuptools-scm, - pythonOlder, }: buildPythonPackage rec { @@ -22,22 +20,19 @@ buildPythonPackage rec { version = "0.11.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchPypi { inherit pname version; hash = "sha256-Tq6qme2RFj7Y+arBMscKgfJbxMEvPNVNujKfwmxnObU="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm ]; buildInputs = [ pytest ]; - propagatedBuildInputs = [ - attrs + dependencies = [ hypothesis pytest-arraydiff pytest-astropy-header @@ -51,10 +46,11 @@ buildPythonPackage rec { # pytest-astropy is a meta package that only propagates requirements doCheck = false; - meta = with lib; { + meta = { + changelog = "https://github.com/astropy/pytest-astropy/releases/tag/v${version}"; description = "Meta-package containing dependencies for testing"; - homepage = "https://astropy.org"; - license = licenses.bsd3; + homepage = "https://github.com/astropy/pytest-astropy"; + license = lib.licenses.bsd3; maintainers = [ ]; }; }