diff options
Diffstat (limited to 'pkgs/development/python-modules/astropy-extension-helpers/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/astropy-extension-helpers/default.nix | 37 |
1 files changed, 16 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/astropy-extension-helpers/default.nix b/pkgs/development/python-modules/astropy-extension-helpers/default.nix index 9f7280185aed..e398e7c34c2f 100644 --- a/pkgs/development/python-modules/astropy-extension-helpers/default.nix +++ b/pkgs/development/python-modules/astropy-extension-helpers/default.nix @@ -1,15 +1,16 @@ -{ lib -, buildPythonPackage -, fetchPypi -, fetchpatch -, findutils -, pytestCheckHook -, pythonOlder -, pip -, setuptools -, setuptools-scm -, tomli -, wheel +{ + lib, + buildPythonPackage, + fetchPypi, + fetchpatch, + findutils, + pytestCheckHook, + pythonOlder, + pip, + setuptools, + setuptools-scm, + tomli, + wheel, }: buildPythonPackage rec { @@ -40,9 +41,7 @@ buildPythonPackage rec { wheel ]; - propagatedBuildInputs = [ - tomli - ]; + propagatedBuildInputs = [ tomli ]; nativeCheckInputs = [ findutils @@ -51,18 +50,14 @@ buildPythonPackage rec { ]; # avoid import mismatch errors, as conftest.py is copied to build dir - pytestFlagsArray = [ - "extension_helpers" - ]; + pytestFlagsArray = [ "extension_helpers" ]; disabledTests = [ # https://github.com/astropy/extension-helpers/issues/43 "test_write_if_different" ]; - pythonImportsCheck = [ - "extension_helpers" - ]; + pythonImportsCheck = [ "extension_helpers" ]; meta = with lib; { description = "Utilities for building and installing packages in the Astropy ecosystem"; |
