diff options
Diffstat (limited to 'pkgs/development/python-modules/pytest-random-order/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pytest-random-order/default.nix | 31 |
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pytest-random-order/default.nix b/pkgs/development/python-modules/pytest-random-order/default.nix index 2b2b6624c099..9886bcf7f869 100644 --- a/pkgs/development/python-modules/pytest-random-order/default.nix +++ b/pkgs/development/python-modules/pytest-random-order/default.nix @@ -1,12 +1,13 @@ -{ lib -, buildPythonPackage -, fetchPypi -, py -, pytest -, pytest-xdist -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + py, + pytest, + pytest-xdist, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -21,13 +22,9 @@ buildPythonPackage rec { hash = "sha256-RHLX008fHF86NZxP/FwT7QZSMvMeyhnIhEwatAbnkIA="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - buildInputs = [ - pytest - ]; + buildInputs = [ pytest ]; nativeCheckInputs = [ py @@ -35,9 +32,7 @@ buildPythonPackage rec { pytestCheckHook ]; - pythonImportsCheck = [ - "random_order" - ]; + pythonImportsCheck = [ "random_order" ]; meta = with lib; { homepage = "https://github.com/jbasko/pytest-random-order"; |
