summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pymorphy3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pymorphy3/default.nix')
-rw-r--r--pkgs/development/python-modules/pymorphy3/default.nix27
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pymorphy3/default.nix b/pkgs/development/python-modules/pymorphy3/default.nix
index eea5aa474634..a09350f05eb1 100644
--- a/pkgs/development/python-modules/pymorphy3/default.nix
+++ b/pkgs/development/python-modules/pymorphy3/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, fetchFromGitHub
-, buildPythonPackage
-, click
-, dawg-python
-, docopt
-, pytestCheckHook
-, pymorphy3-dicts-ru
-, pymorphy3-dicts-uk
+{
+ lib,
+ fetchFromGitHub,
+ buildPythonPackage,
+ click,
+ dawg-python,
+ docopt,
+ pytestCheckHook,
+ pymorphy3-dicts-ru,
+ pymorphy3-dicts-uk,
}:
buildPythonPackage rec {
@@ -28,13 +29,9 @@ buildPythonPackage rec {
pymorphy3-dicts-uk
];
- optional-dependencies.CLI = [
- click
- ];
+ optional-dependencies.CLI = [ click ];
- nativeCheckInputs = [
- pytestCheckHook
- ] ++ optional-dependencies.CLI;
+ nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.CLI;
pythonImportsCheck = [ "pymorphy3" ];