diff options
Diffstat (limited to 'pkgs/development/python-modules/pyssim/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyssim/default.nix | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyssim/default.nix b/pkgs/development/python-modules/pyssim/default.nix index e7632e67905c..6b910b1d7207 100644 --- a/pkgs/development/python-modules/pyssim/default.nix +++ b/pkgs/development/python-modules/pyssim/default.nix @@ -1,11 +1,23 @@ -{ lib, buildPythonPackage, fetchFromGitHub, numpy, scipy, pillow, fetchpatch }: +{ + lib, + buildPythonPackage, + fetchFromGitHub, + numpy, + scipy, + pillow, + fetchpatch, +}: buildPythonPackage rec { pname = "pyssim"; version = "0.6"; format = "setuptools"; - propagatedBuildInputs = [ numpy scipy pillow ]; + propagatedBuildInputs = [ + numpy + scipy + pillow + ]; # PyPI tarball doesn't contain test images so let's use GitHub src = fetchFromGitHub { |