diff options
Diffstat (limited to 'pkgs/development/python-modules/whoosh/default.nix')
-rw-r--r-- | pkgs/development/python-modules/whoosh/default.nix | 31 |
1 files changed, 12 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/whoosh/default.nix b/pkgs/development/python-modules/whoosh/default.nix index 52831486f2b7..b56a590a3fa6 100644 --- a/pkgs/development/python-modules/whoosh/default.nix +++ b/pkgs/development/python-modules/whoosh/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchPypi -, pytestCheckHook -, pythonOlder -, setuptools +{ + lib, + buildPythonPackage, + fetchPypi, + pytestCheckHook, + pythonOlder, + setuptools, }: buildPythonPackage rec { @@ -19,13 +20,9 @@ buildPythonPackage rec { hash = "sha256-fKVjPb+p4OD6QA0xUaigxL7FO9Ls7cCmdwWxdWXDGoM="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; # Wrong encoding postPatch = '' @@ -34,18 +31,14 @@ buildPythonPackage rec { --replace-fail "[pytest]" "[tool:pytest]" ''; - pythonImportsCheck = [ - "whoosh" - ]; + pythonImportsCheck = [ "whoosh" ]; - disabledTests = [ - "test_minimize_dfa" - ]; + disabledTests = [ "test_minimize_dfa" ]; meta = with lib; { description = "Fast, pure-Python full text indexing, search, and spell checking library"; homepage = "https://github.com/mchaput/whoosh"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } |