summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyemd/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyemd/default.nix')
-rw-r--r--pkgs/development/python-modules/pyemd/default.nix33
1 files changed, 15 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pyemd/default.nix b/pkgs/development/python-modules/pyemd/default.nix
index 1fd61b054f67..b156aed9174a 100644
--- a/pkgs/development/python-modules/pyemd/default.nix
+++ b/pkgs/development/python-modules/pyemd/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, pythonOlder
-, fetchPypi
-, cython
-, oldest-supported-numpy
-, packaging
-, setuptools
-, setuptools-scm
-, wheel
-, numpy
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ pythonOlder,
+ fetchPypi,
+ cython,
+ oldest-supported-numpy,
+ packaging,
+ setuptools,
+ setuptools-scm,
+ wheel,
+ numpy,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -35,13 +36,9 @@ buildPythonPackage rec {
wheel
];
- propagatedBuildInputs = [
- numpy
- ];
+ propagatedBuildInputs = [ numpy ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "A Python wrapper for Ofir Pele and Michael Werman's implementation of the Earth Mover's Distance";