diff options
Diffstat (limited to 'pkgs/development/python-modules/psd-tools/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/psd-tools/default.nix | 39 |
1 files changed, 18 insertions, 21 deletions
diff --git a/pkgs/development/python-modules/psd-tools/default.nix b/pkgs/development/python-modules/psd-tools/default.nix index d732d0ce84a4..9250aaacc471 100644 --- a/pkgs/development/python-modules/psd-tools/default.nix +++ b/pkgs/development/python-modules/psd-tools/default.nix @@ -1,18 +1,19 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pythonOlder -, attrs -, docopt -, pillow -, scikit-image -, scipy -, numpy -, aggdraw -, pytestCheckHook -, pytest-cov -, ipython -, cython +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, + attrs, + docopt, + pillow, + scikit-image, + scipy, + numpy, + aggdraw, + pytestCheckHook, + pytest-cov, + ipython, + cython, }: buildPythonPackage rec { @@ -33,9 +34,7 @@ buildPythonPackage rec { sed -i "/addopts =/d" pyproject.toml ''; - nativeBuildInputs = [ - cython - ]; + nativeBuildInputs = [ cython ]; propagatedBuildInputs = [ aggdraw @@ -53,9 +52,7 @@ buildPythonPackage rec { pytest-cov ]; - pythonImportsCheck = [ - "psd_tools" - ]; + pythonImportsCheck = [ "psd_tools" ]; meta = with lib; { description = "Python package for reading Adobe Photoshop PSD files"; |
